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 void
delete()
Delete this child.boolean
getHasChildren()
Check if this MenuObjectIF has children.String
getTitle()
Get the title as a String.TopicIF
getTopic()
Get the topic representing this MenuObjectIF as a String.void
setTitle(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.
-
-