| |
|
| java.lang.Object info.jtrac.domain.ItemItem
ItemItem | public class ItemItem implements Serializable(Code) | | Class that exists purely to hold a single item related to another item
along with a integer "type" indicating the nature of the relationship
between Item --> Item (one directional relationship)
This is used in the following cases
- item is a duplicate of another
- item depends on another
and can be used for other kinds of relationships in the future
|
DEPENDS_ON | final public static int DEPENDS_ON(Code) | | |
DUPLICATE_OF | final public static int DUPLICATE_OF(Code) | | |
RELATED | final public static int RELATED(Code) | | |
ItemItem | public ItemItem()(Code) | | |
getId | public long getId()(Code) | | |
getRelationText | public static String getRelationText(int type)(Code) | | |
getType | public int getType()(Code) | | |
hashCode | public int hashCode()(Code) | | |
setId | public void setId(long id)(Code) | | |
setRelatedItem | public void setRelatedItem(Item relatedItem)(Code) | | |
setType | public void setType(int type)(Code) | | |
|
|
|