Class AppTreeNode

java.lang.Object
com.kingsrook.qqq.backend.core.model.metadata.frontend.AppTreeNode

public class AppTreeNode extends Object
Frontend-version of objects that are parts of the app-hierarchy/tree. e.g., Tables, Processes, and Apps themselves (since they can be nested). These objects are organized into a tree - where each Node can have 0 or more other Nodes as children.
  • Constructor Details

  • Method Details

    • getType

      public AppTreeNodeType getType()
      Getter for type
    • getName

      public String getName()
      Getter for name
    • getLabel

      public String getLabel()
      Getter for label
    • getChildren

      public List<AppTreeNode> getChildren()
      Getter for children
    • getIconName

      public String getIconName()
      Getter for iconName
    • getIcon

      public QIcon getIcon()
      Getter for icon
    • addChild

      public void addChild(AppTreeNode childTreeNode)