Class UIManager.BundleTreeNode

java.lang.Object
edu.wisc.ssec.mcidasv.ui.UIManager.BundleTreeNode
Enclosing class:
UIManager

private class UIManager.BundleTreeNode extends Object
Represents a SavedBundle as a tree.
  • Field Details

  • Constructor Details

    • BundleTreeNode

      public BundleTreeNode(String name)
      This constructor is used to build a node that is considered a "parent". These nodes only have child nodes, no SavedBundles. This was done so that distinguishing between bundles and bundle subcategories would be easy.
      Parameters:
      name - The name of this node. For a parent node with "Toolbar>cat" as the path, the name parameter would contain only "cat".
    • BundleTreeNode

      public BundleTreeNode(String name, SavedBundle bundle)
      Nodes constructed using this constructor can only ever be child nodes.
      Parameters:
      name - The name of the SavedBundle.
      bundle - A reference to the SavedBundle.
  • Method Details