Web implementation of the Gourmet Recipe Manager
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

64 lines
979 B

package com.mousetech.gourmetj.persistence.model;
public interface IngredientIF {
Double getAmount();
void setAmount(Double amount);
Integer getDeleted();
void setDeleted(Integer deleted);
Long getId();
void setId(Long id);
String getInggroup();
void setInggroup(String inggroup);
String getIngkey();
void setIngkey(String ingkey);
String getItem();
void setItem(String item);
Integer getOptional();
void setOptional(Integer optional);
Integer getPosition();
void setPosition(Integer position);
Double getRangeamount();
void setRangeamount(Double rangeamount);
// public Long getRecipeId() {
// return this.recipeId;
// }
//
// public void setRecipeId(Long recipeId) {
// this.recipeId = recipeId;
// }
Recipe getRecipe();
void setRecipe(Recipe recipe);
Long getRefid();
void setRefid(Long refid);
Integer getShopoptional();
void setShopoptional(Integer shopoptional);
String getUnit();
void setUnit(String unit);
}