Uses of Class
com.dlsc.flexgantt.swing.treetable.TreeTableNode

Packages that use TreeTableNode
com.dlsc.flexgantt.swing Contains the Gantt chart components and various other user interface elements that can be used together with the Gantt chart. 
com.dlsc.flexgantt.swing.layer The right-hand side of any Gantt chart is a layer container, which is responsible for managing the various layer types. 
com.dlsc.flexgantt.swing.treetable A tree table implementation used solely for the purpose of drawing the left-hand side of a Gantt chart. 
 

Uses of TreeTableNode in com.dlsc.flexgantt.swing
 

Methods in com.dlsc.flexgantt.swing that return TreeTableNode
 TreeTableNode ObjectBounds.getTreeTableNode()
          Returns the (tree table internal) representation of the tree node.
 

Constructors in com.dlsc.flexgantt.swing with parameters of type TreeTableNode
ObjectBounds(java.lang.Object node, java.lang.Object obj, IGanttChartModel model, int x, int y, int width, int height, TreeTableNode treeTableNode, TimelineObjectLayer layer)
          Constructs a new bounds object.
 

Uses of TreeTableNode in com.dlsc.flexgantt.swing.layer
 

Methods in com.dlsc.flexgantt.swing.layer that return types with arguments of type TreeTableNode
 java.util.List<TreeTableNode> LayerContainer.getClipNodes()
          Returns a list of tree table nodes where each node is contained within the current drawing clip.
 

Uses of TreeTableNode in com.dlsc.flexgantt.swing.treetable
 

Fields in com.dlsc.flexgantt.swing.treetable declared as TreeTableNode
protected  TreeTableNode[] TreeTableNode.children
          The array of children entries.
protected  TreeTableNode TreeTableNode.parent
          Reference to the parent table entry.
 

Methods in com.dlsc.flexgantt.swing.treetable that return TreeTableNode
 TreeTableNode TreeTableNode.getChildNode(java.lang.Object modelChildNode)
          Returns the wrapping tree table node for the given model node.
 TreeTableNode[] TreeTableNode.getChildren()
          Returns the array of child nodes.
 TreeTableNode TreeTableDragAndDropManager.getDraggedNode()
          Returns the dragged tree table node.
 TreeTableNode TreeTableNode.getParentNode()
          Returns the parent node of the node.
 TreeTableNode TreeTable.getRootNode()
          The root node.
 TreeTableNode TreeTable.getTreeTableNodeAt(int y)
          Returns the tree table node for the given y-coordinate.
 TreeTableNode[] TreeTable.getTreeTableNodes()
          Returns the array that is storing the tree table nodes.
 TreeTableNode[] TreeTable.getTreeTableNodesBetween(int y1, int y2)
          Returns all nodes located on or between the two given y-coordinates.
 

Methods in com.dlsc.flexgantt.swing.treetable with parameters of type TreeTableNode
protected  java.awt.Image TreeTableDragAndDropManager.createDragImage(TreeTableNode node)
          Creates a drag image for the given tree table node.
protected  void TreeTable.paintCell(java.awt.Graphics g, TreeTableNode node, int x, int y, int width, int height, int row, int column, int modelIndex, java.lang.Class columnClass, boolean fillerColumn)
          Paints a single cell into the given graphics context for the given node and the given column.
protected  void TreeTableNode.setParent(TreeTableNode parent)
          Sets the node's parent node.