Interface Menu.ChildIF
-
- All Superinterfaces:
Menu.MenuObjectIF
- All Known Implementing Classes:
Menu.Heading
,Menu.Item
- Enclosing class:
- Menu
public static interface Menu.ChildIF extends Menu.MenuObjectIF
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getIsHeading()
Check whether this is a Heading.boolean
getIsItem()
Check whether this is an Item.void
moveOneDown()
Moves this child one step further down its parent's list of children.void
moveOneUp()
Moves this child one step higher up the list of children on its parent.-
Methods inherited from interface net.ontopia.topicmaps.nav2.portlets.pojos.Menu.MenuObjectIF
delete, getHasChildren, getTitle, getTopic, setTitle
-
-
-
-
Method Detail
-
getIsHeading
boolean getIsHeading()
Check whether this is a Heading.
-
getIsItem
boolean getIsItem()
Check whether this is an Item.
-
moveOneUp
void moveOneUp()
Moves this child one step higher up the list of children on its parent. has no effect if it is already first.
-
moveOneDown
void moveOneDown()
Moves this child one step further down its parent's list of children. Has no effect if it is already last.
-
-