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

    Modifier and Type
    Method
    Description
    boolean
    Check whether this is a Heading.
    boolean
    Check whether this is an Item.
    void
    Moves this child one step further down its parent's list of children.
    void
    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 Details

    • 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.