Interface Item
-
- All Known Implementing Classes:
RegisterMode
public interface Item
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
check(java.lang.String item)
Checks the item type.int
getEndIndex()
boolean
getFrameDependence()
int
getIndex(java.lang.String item)
java.lang.String
getItemName()
java.lang.String
getShortDescription(int index)
Returns a short description of item with the specified index
-
-
-
Method Detail
-
getItemName
java.lang.String getItemName()
- Returns:
- the item name in model
-
getEndIndex
int getEndIndex()
- Returns:
- the last index value
-
getFrameDependence
boolean getFrameDependence()
- Returns:
- true if access to the item depends on the frame
-
getIndex
int getIndex(java.lang.String item)
- Parameters:
item
- from trace- Returns:
- index of item
-
check
boolean check(java.lang.String item)
Checks the item type.- Parameters:
item
- from check- Returns:
- true if this item matches type, false otherwise
-
getShortDescription
java.lang.String getShortDescription(int index)
Returns a short description of item with the specified index- Parameters:
index
- of the item- Returns:
- a short description
-
-