Package com.epicbot.api.shared.entity
Interface WidgetChildItem
-
- All Superinterfaces:
Actionable
,java.lang.Comparable<WidgetChildItem>
,Identifiable
,Item
,Nameable
,Validatable
public interface WidgetChildItem extends Item, Validatable, java.lang.Comparable<WidgetChildItem>
Represents a item widget. For example the items in your inventory or bank.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WidgetGroup
getGroup()
Gets the widget group.int
getIndex()
Gets the index of the item.WidgetChild
getParent()
Gets the parent.int
getParentId()
Gets the parent id.-
Methods inherited from interface com.epicbot.api.shared.entity.details.Actionable
getActions, hasAction, hasActionMatch
-
Methods inherited from interface com.epicbot.api.shared.entity.details.Identifiable
getId
-
Methods inherited from interface com.epicbot.api.shared.entity.Item
getGroundActions, getHighAlchemyPrice, getLowAlchemyPrice, getNotedId, getStackSize, getStorePrice, getUnNotedId, hasGroundAction, isMembers, isNoted, isStackable
-
Methods inherited from interface com.epicbot.api.shared.entity.details.Validatable
isValid
-
-
-
-
Method Detail
-
getIndex
int getIndex()
Gets the index of the item.- Returns:
- int
-
getGroup
WidgetGroup getGroup()
Gets the widget group.- Returns:
WidgetGroup
-
getParentId
int getParentId()
Gets the parent id.- Returns:
- int
-
getParent
WidgetChild getParent()
Gets the parent.- Returns:
WidgetChild
-
-