Interface Menu.MenuObjectIF
-
- All Known Subinterfaces:
Menu.ChildIF,Menu.ParentIF
- All Known Implementing Classes:
Menu.Heading,Menu.Item
- Enclosing class:
- Menu
public static interface Menu.MenuObjectIF
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()Delete this child.booleangetHasChildren()Check if this MenuObjectIF has children.StringgetTitle()Get the title as a String.TopicIFgetTopic()Get the topic representing this MenuObjectIF as a String.voidsetTitle(String title)Sets the title.
-
-
-
Method Detail
-
getTitle
String getTitle()
Get the title as a String.
-
getTopic
TopicIF getTopic()
Get the topic representing this MenuObjectIF as a String.
-
getHasChildren
boolean getHasChildren()
Check if this MenuObjectIF has children.
-
setTitle
void setTitle(String title)
Sets the title.
-
delete
void delete()
Delete this child.
-
-