[]
        
(Showing Draft Content)

IGroupInfo

Interface IGroupInfo


public interface IGroupInfo
Represents the information of a group.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Collapses current group.
    void
    Expands current group.
    Get children of current group
    int
    Gets the end index of current group.
    boolean
    Get whether the current group is collapsed
    int
    Gets the level of current group.
    Get the parent of current group.
    int
    Gets the start index of current group.
  • Method Details

    • expand

      void expand()
      Expands current group.
    • collapse

      void collapse()
      Collapses current group.
    • getStartIndex

      int getStartIndex()
      Gets the start index of current group.
    • getEndIndex

      int getEndIndex()
      Gets the end index of current group.
    • getLevel

      int getLevel()
      Gets the level of current group.
    • getIsCollapsed

      boolean getIsCollapsed()
      Get whether the current group is collapsed
    • getParent

      IGroupInfo getParent()
      Get the parent of current group.
    • getChildren

      List<IGroupInfo> getChildren()
      Get children of current group