Uses of Interface
org.openbp.cockpit.modeler.figures.VisualElement

Packages that use VisualElement
org.openbp.cockpit.modeler   
org.openbp.cockpit.modeler.drawing   
org.openbp.cockpit.modeler.figures   
org.openbp.cockpit.modeler.figures.process   
org.openbp.cockpit.modeler.figures.spline   
org.openbp.cockpit.modeler.figures.tag   
org.openbp.cockpit.modeler.tools   
 

Uses of VisualElement in org.openbp.cockpit.modeler
 

Methods in org.openbp.cockpit.modeler with parameters of type VisualElement
 int ViewModeMgr.getTagState(VisualElement ve)
          Gets the tag state, considering the modeler type.
 boolean ViewModeMgr.isControlAnchorVisible(VisualElement ve)
          Gets the control anchor visibility, considering the modeler type.
 boolean ViewModeMgr.isControlLinkVisible(VisualElement ve)
          Gets the control link visibility, considering the modeler type.
 boolean ViewModeMgr.isDataLinkVisible(VisualElement ve)
          Gets the data link visibility, considering the modeler type.
 

Uses of VisualElement in org.openbp.cockpit.modeler.drawing
 

Classes in org.openbp.cockpit.modeler.drawing that implement VisualElement
 class ProcessDrawing
          A ProcessDrawing is the graphical representation of a OpenBP process.
 

Methods in org.openbp.cockpit.modeler.drawing that return VisualElement
 VisualElement ProcessDrawing.findVisualElement(int x, int y)
           
 VisualElement ProcessDrawing.findVisualElementInside(int x, int y)
           
 VisualElement ProcessDrawing.getParentElement()
           
 

Uses of VisualElement in org.openbp.cockpit.modeler.figures
 

Methods in org.openbp.cockpit.modeler.figures that return VisualElement
 VisualElement VisualElement.findVisualElement(int x, int y)
          Gets the visual element that is a child of this element and matches the given coordinates.
 VisualElement VisualElement.findVisualElementInside(int x, int y)
          Gets the visual element that is a child of this element and matches the given coordinates (recursively).
 VisualElement VisualElement.getParentElement()
          Gets parent element of this element, if any.
 

Uses of VisualElement in org.openbp.cockpit.modeler.figures.process
 

Subinterfaces of VisualElement in org.openbp.cockpit.modeler.figures.process
 interface ProcessElementContainer
          This interface is implemented by all figures which represent an OpenBP process element (nodes, sockets etc\.).
 

Classes in org.openbp.cockpit.modeler.figures.process that implement VisualElement
 class DecisionNodeFigure
          Decision node figure.
 class FinalNodeFigure
          Graphical representation of a initial node.
 class FlowConnection
          Spline figure representing a control link.
 class ForkNodeFigure
          Fork node figure.
 class HLineFigure
          Vertical line figure.
 class InitialNodeFigure
          Graphical representation of a initial node.
 class JoinNodeFigure
          Join node figure.
 class LineFigure
          Abstract line figure.
 class MergeNodeFigure
          Merge node figure.
 class MultiSocketNodeFigure
          A Node Figure is the graphical representation of a multi socket node.
 class NodeFigure
          A Node Figure is the graphical representation of a process node.
 class ParamConnection
          Spline figure representing a data link.
 class ParamFigure
          Figure that is used to represent node params of a socket.
 class PlaceholderNodeFigure
          Placeholder figure.
 class PrimitiveNodeFigure
          Primtive node figure.
 class ProcessVariableConnection
          Graphical represention of a datalink between a node parameter and a process variable.
 class ProcessVariableFigure
          This is the figurative representation of a process variable.
 class SocketFigure
          Socket figure.
 class TextElementFigure
          The text element figure represents a simple text rectangle.
 class VLineFigure
          Vertical line figure.
 class WaitStateNodeFigure
          Wait state node figure.
 class WorkflowEndNodeFigure
          Workflow node figure.
 class WorkflowNodeFigure
          Workflow node figure.
 

Methods in org.openbp.cockpit.modeler.figures.process that return VisualElement
 VisualElement TextElementFigure.findVisualElement(int x, int y)
           
 VisualElement ProcessVariableFigure.findVisualElement(int x, int y)
           
 VisualElement ProcessVariableConnection.findVisualElement(int x, int y)
           
 VisualElement NodeFigure.findVisualElement(int x, int y)
           
 VisualElement LineFigure.findVisualElement(int x, int y)
           
 VisualElement TextElementFigure.findVisualElementInside(int x, int y)
           
 VisualElement ProcessVariableFigure.findVisualElementInside(int x, int y)
           
 VisualElement ProcessVariableConnection.findVisualElementInside(int x, int y)
           
 VisualElement NodeFigure.findVisualElementInside(int x, int y)
           
 VisualElement LineFigure.findVisualElementInside(int x, int y)
           
 VisualElement TextElementFigure.getParentElement()
           
 VisualElement ProcessVariableFigure.getParentElement()
           
 VisualElement ProcessVariableConnection.getParentElement()
           
 VisualElement NodeFigure.getParentElement()
           
 VisualElement LineFigure.getParentElement()
           
 

Uses of VisualElement in org.openbp.cockpit.modeler.figures.spline
 

Classes in org.openbp.cockpit.modeler.figures.spline that implement VisualElement
 class PolySplineConnection
          A spline connection is a standard implementation of the connection figure interface.
 

Methods in org.openbp.cockpit.modeler.figures.spline that return VisualElement
 VisualElement PolySplineConnection.findVisualElement(int x, int y)
           
 VisualElement PolySplineConnection.findVisualElementInside(int x, int y)
           
 VisualElement PolySplineConnection.getParentElement()
           
 

Uses of VisualElement in org.openbp.cockpit.modeler.figures.tag
 

Classes in org.openbp.cockpit.modeler.figures.tag that implement VisualElement
 class AbstractTagFigure
          An AbstractTagFigure represents a single tag.
 class HorizontalRotatingTagFigure
          Horizontally oriented tag figure that may rotate around its parent.
 class SimpleTextTagFigure
          Simple tag figure that displays a line of text.
 class StraightTagFigure
          Non-rotating tag figure that contains simple content that does not change its order when the tag is moved.
 

Fields in org.openbp.cockpit.modeler.figures.tag declared as VisualElement
protected  VisualElement AbstractTagFigure.parent
          Containing figure
 

Methods in org.openbp.cockpit.modeler.figures.tag that return VisualElement
 VisualElement AbstractTagFigure.findVisualElement(int x, int y)
           
 VisualElement AbstractTagFigure.findVisualElementInside(int x, int y)
           
 VisualElement AbstractTagFigure.getParentElement()
           
 

Constructors in org.openbp.cockpit.modeler.figures.tag with parameters of type VisualElement
AbstractTagFigure(VisualElement parent, java.lang.Object modelObject)
          Constructor.
StraightTagFigure(VisualElement parent, java.lang.Object modelObject, java.awt.Point origin)
          Constructor.
 

Uses of VisualElement in org.openbp.cockpit.modeler.tools
 

Methods in org.openbp.cockpit.modeler.tools that return VisualElement
 VisualElement ModelerToolSupport.getLastFigure()
          Gets the last figure that has been hovered with the mouse.
 



Copyright © 2011. All Rights Reserved.