Interface ParentProxy

All Known Implementing Classes:
AbstractParent, MenuBarProxy, MenuProxy

public interface ParentProxy
Since:
3.1.0
Author:
Joel Uckelman
  • Method Details

    • add

      void add(ChildProxy<?> child)
    • insert

      void insert(ChildProxy<?> child, int pos)
    • remove

      void remove(ChildProxy<?> child)
    • remove

      void remove(int pos)
    • getChildCount

      int getChildCount()
    • getChildren

      ChildProxy<?>[] getChildren()
    • getChild

      ChildProxy<?> getChild(int pos)
    • getIndex

      int getIndex(ChildProxy<?> child)