JComponentPack 1.5.0

Uses of Interface
com.zfqjava.chart.Node

Packages that use Node
com.zfqjava.chart   
com.zfqjava.chart.event   
com.zfqjava.chart.geom   
 

Uses of Node in com.zfqjava.chart
 

Subinterfaces of Node in com.zfqjava.chart
 interface Arrow
          Arrow provides a component to paint arrow.
 interface Handle
          Handle provides a tip of node to resize and move.
 interface Link
          Link act as a link between node.
 interface Path
          Path provides a path.
 interface Tool
          Tool provides a tool for flow chart.
 

Classes in com.zfqjava.chart that implement Node
 class AbstractLink
          AbstractLink provides a basic link implements.
 class AbstractNode
          Node provides a node on chart container.
 class AxisNode
          AxisNode provides a axis ndoe.
 class BarChart
          BarChart provides a bar chart.
 class BasicChart
          BasicChart provides a basic chart.
 class BasicTool
          BasicTool provides a selectio tool.
 class Chart
          Chart provides a chart container.
 class ComponentNode
          ComponentNode provides a node contains a component.
 class GridNode
          GridNode provides a Grid ndoe.
 class GroupNode
          GroupNode provides a group node.
 class ImageNode
          ImageNode provides a node contain a Image.
 class LegendNode
          LegendNode provides a legend node.
 class LineChart
          LineChart provides a Line chart.
 class NoteNode
          NoteNode provides a note node.
 class PieChart
          PieChart provides a Pie chart.
 class ShapeArrow
          Arrow provides a component to paint arrow.
 class ShapeLink
          ShapeLink provides a shape link.
 class ShapeNode
          ShapeNode provides a ndoe contains a shape.
 class TextNode
          TextNode provides a node contains a text.
 class WallNode
          WallNode provides a Wall ndoe.
 class XYChart
          XYChart provides a XY chart.
 

Methods in com.zfqjava.chart that return Node
protected  Node LegendNode.createIconNode()
           
 Node AbstractNode.findNodeAt(int x, int y)
           
 Node Chart.findNodeAt(int x, int y)
           
 Node GroupNode.findNodeAt(int x, int y)
           
 Node Node.findNodeAt(int x, int y)
          Finds the node contains the point x, y.
 Node Chart.getEditingNode()
          Returns the current editing node.
 Node AbstractLink.getEndNode()
           
 Node Link.getEndNode()
          Returns the end node for this link.
 Node LegendNode.getIconNode(int index)
           
 Node BasicTool.getNode()
          Returns the node to create.
 Node AbstractNode.getNode(int index)
           
 Node Node.getNode(int index)
          Returns the node at the specified index.
 Node Handle.getOwnerNode()
          Returns the owner node for this handle.
 Node Chart.getSelectedNode()
          Returns the last selected node.
 Node AbstractLink.getStartNode()
           
 Node Link.getStartNode()
          Returns the start node for this link.
 

Methods in com.zfqjava.chart with parameters of type Node
 void AbstractNode.addNode(Node node)
           
 void Node.addNode(Node node)
          Adds a node to this node.
 void AbstractNode.addNode(Node node, int index)
           
 void Node.addNode(Node node, int index)
          Adds a node to this node at the specify index.
 void Chart.addSelection(Node node)
          Adds the node to selection.
 void Layout.doLayout(Node node)
          Layout the node's children.
protected  void Chart.fireNodeAdded(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeLinked(Link link, Node startNode, Node endNode)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeMoved(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeRemoved(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeResized(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeRotated(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeSelected(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeUnlinked(Link link, Node startNode, Node endNode)
          Notifies all listeners that have registered interest for notification on this event type.
protected  void Chart.fireNodeUnselected(Node node)
          Notifies all listeners that have registered interest for notification on this event type.
 Dimension Layout.getPreferredSize(Node node)
          Returns the preferred size of this node.
 int AbstractNode.indexOfNode(Node node)
           
 int Node.indexOfNode(Node node)
          Returns the index for the specified node.
 boolean Chart.isGrouped(Node node)
          Determines the node grouped state.
 boolean Chart.isSelected(Node node)
          Determines the node selected state.
 void Chart.moveToBack(Node node)
          Move the node to back.
 void Chart.moveToFront(Node node)
          Move the node to front.
 void AbstractNode.removeNode(Node node)
           
 void Node.removeNode(Node node)
          Removes the node from this node.
 void Chart.removeSelection(Node node)
          Removes the node from selection
 void Chart.select(Node node)
          Selects the node.
 void AbstractLink.setEndNode(Node endNode)
           
 void Link.setEndNode(Node endNode)
          Sets the end node for this link.
 void BasicTool.setNode(Node node)
          Sets the node to create.
 void AbstractLink.setStartNode(Node startNode)
           
 void Link.setStartNode(Node startNode)
          Sets the start node for this link.
 void Chart.startEditingAtNode(Node node)
          Starts edit the specified node.
 

Uses of Node in com.zfqjava.chart.event
 

Methods in com.zfqjava.chart.event that return Node
 Node LinkEvent.getEndNode()
           
 Node ChartEvent.getNode()
          Returns the node has added or removed.
 Node SelectionEvent.getNode()
          Returns the node that has selected or unselected.
 Node LinkEvent.getStartNode()
           
 

Constructors in com.zfqjava.chart.event with parameters of type Node
ChartEvent(Object source, Node node)
          Constructs a prototypical Event.
LinkEvent(Object source, Link link, Node startNode, Node endNode)
          Constructs a prototypical Event.
SelectionEvent(Object source, Node node)
          Constructs a prototypical Event.
 

Uses of Node in com.zfqjava.chart.geom
 

Classes in com.zfqjava.chart.geom that implement Node
 class ArcNode
          ArcNode provides a rectangle node.
 class ConeNode
          ConeNode provides a cone node.
 class CubeNode
          CubeNode provides a cube node.
 class CurveLink
          CurveLink provides a curve link.
 class CurveNode
          CurveNode provides a rectangle node.
 class CylinderNode
          CylinderNode provides a cylinder node.
 class DiamondNode
          DiamondNode provides a rectangle node.
 class ElbowLink
          ElbowLink provides a elbow line link.
 class ElbowNode
          ElbowNode provides a rectangle node.
 class EllipseNode
          EllipseNode provides a ellipse node.
 class HexagonNode
          HexagonNode provides a rectangle node.
 class LineLink
          LineLink provides a line link.
 class LineNode
          LineNode provides a line node.
 class ParallelogramNode
          ParallelogramNode provides a rectangle node.
 class PathLink
          PathLink provides a path link.
 class PolygonLink
          PolygonLink provides a line link.
 class PolygonNode
          PolygonNode provides a rectangle node.
 class PolylineLink
          PolylineLink provides a polyline link.
 class PyramidNode
          PyramidNode provides a pyramid node.
 class RectangleNode
          RectangleNode provides a rectangle node.
 class RoundRectangleNode
          RoundRectangleNode provides a round rectangle node.
 class SphereNode
          SphereNode provides a sphere node.
 class StarNode
          StarNode provides a star node.
 class TrapeziumNode
          TrapeziumNode provides a rectangle node.
 class TrapezoidNode
          TrapezoidNode provides a rectangle node.
 class TriangleNode
          TriangleNode provides a rectangle node.
 


JComponentPack 1.5.0

Send your Feedback
JComponentPack 1.5.0
Copyright © 2001-2007 Extreme Component, Inc. All rights reserved.