Uses of Class
gps.core.HierarchyNode

Packages that use HierarchyNode
gps.core   
 

Uses of HierarchyNode in gps.core
 

Methods in gps.core that return HierarchyNode
 HierarchyNode HierarchyNode.getAlternateAt(int index)
           
 HierarchyNode HierarchyNode.getChildAt(int index)
          Returns the child at the specified index in this node's child array.
 HierarchyNode FlushDataStructure.getNode()
           
 HierarchyNode ExplosionDataStructure.getNode()
           
 HierarchyNode HierarchyModel.getRootNodeAtVector(int index)
           
 HierarchyNode HierarchyNode.getSecondaryParentAt(int index)
          method added by lavanya on 01242002
 HierarchyNode ExplosionController.getSelectedNode()
           
 

Methods in gps.core with parameters of type HierarchyNode
 void HierarchyNode.addAlternate(HierarchyNode newAlternate)
           
 void HierarchyModel.addAlternate(HierarchyNode parent, HierarchyNode alternateNode)
           
 void HierarchyNode.addAlternateAt(HierarchyNode newAlternate, int index)
          method added by lavanya kumar chinta on 01202002 adds alternate at specified position
 void HierarchyNode.addChild(HierarchyNode newChild)
          Removes newChild from its parent and makes it a child of this node by adding it to the end of this node's child array.
 void HierarchyModel.addChild(HierarchyNode parent, HierarchyNode childNode)
           
 void HierarchyNode.addChildAt(HierarchyNode newChild, int index)
          method added by lavanya kumar chinta on 01202002 adds child at specified position
 void TrinitiCanvas.addChildNode(HierarchyNode selectedNode, HierarchyNode node, java.awt.Point point)
          Added by A.ChinnappaRajan on 29th May 2002 Adding child node by adding a row in the HPS table
 boolean TrinitiCanvas.addNode(HierarchyNode selectedNode, HierarchyNode node, boolean isCopied)
           
 boolean TrinitiCanvas.addNode(HierarchyNode selectedNode, HierarchyNode node, boolean isCopied, boolean relationFlag)
           
 boolean TrinitiCanvas.addNode(HierarchyNode selectedNode, HierarchyNode node, boolean isCopied, java.awt.Point point)
           
 boolean TrinitiCanvas.addNode(HierarchyNode selectedNode, HierarchyNode node, boolean isCopied, java.awt.Point point, boolean relationFlag)
          adds new node to the selected node
 void HierarchyNode.addToParentNodesVector(HierarchyNode parentNode)
           
 void HierarchyModel.addToRootNodesVector(HierarchyNode node)
           
 void ExplosionController.createFlushDataStructure(HierarchyNode node)
           
 void TrinitiCanvas.deleteAction(HierarchyNode node)
          method modified by lavanya on 03142002 delete the given node form the model
 int HierarchyNode.getAlternateIndex(HierarchyNode alternateNode)
           
 java.util.Vector ObjectMaker.getAlternateNodes(HierarchyNode node)
          gets alternate nodes for the given node
 int HierarchyNode.getChildIndex(HierarchyNode aChild)
          Returns the index of the specified child in this node's child array.
 java.util.Vector ObjectMaker.getChildNodes(HierarchyNode node)
          get child nodes for the given node
 int HierarchyModel.getDescendentCount(HierarchyNode node, boolean alternatesAlso)
          written by lavanya get descendents count (including the given node)
 java.util.Vector ObjectMaker.getParentNodes(HierarchyNode node)
          gets parent nodes for the given node
 void HierarchyModel.insertAlternate(HierarchyNode parent, HierarchyNode alternateNode, int index)
           
 void HierarchyNode.insertAlternate(HierarchyNode newAlternate, int alternateIndex)
           
 void HierarchyModel.insertChild(HierarchyNode parent, HierarchyNode childNode, int index)
           
 void HierarchyNode.insertChild(HierarchyNode newChild, int childIndex)
          method modified by lavanya on 03142002 Removes newChild from its present parent (if it has a parent), sets the child's parent to this node, and then adds the child to this node's child array at index childIndex.
 boolean HierarchyModel.isNodeAvailable(HierarchyNode node)
           
 void HierarchyNode.remove(HierarchyNode aChild)
          Removes aChild from this node's child array, giving it a null parent.
 void TrinitiCanvas.removeAction(HierarchyNode node)
          method is modified by lavanya on 03142002 removes selected node from the model
 void HierarchyModel.resetRelations(HierarchyNode node)
           
 void TrinitiCanvas.selectNode(java.awt.Graphics g, HierarchyNode node)
          select the given node on canvas, then its properites are going to be displayed on property sheet
 void FlushDataStructure.setNode(HierarchyNode node)
           
 void ExplosionDataStructure.setNode(HierarchyNode node)
           
 void HierarchyNode.setParent(HierarchyNode newParent)
          Sets this node's parent to newParent but does not change the parent's child array.
 void HierarchyNode.setSecondaryParentAt(HierarchyNode secondaryParentNode, int position)
          method added by lavanya on 02182002 sets secondary parent node at the specified position
 void ExplosionController.setSelectedNode(HierarchyNode selectedNode)
           
 

Constructors in gps.core with parameters of type HierarchyNode
HierarchyModel(HierarchyNode rootNode)