Uses of Interface
de.cau.cs.kieler.kiml.klayoutdata.KPoint

Packages that use KPoint
de.cau.cs.kieler.kiml.klayoutdata Base package for the KLayoutData structure, which is an extension of KGraph to store layout data in a graph model. 
de.cau.cs.kieler.kiml.klayoutdata.impl Internal implementation of the layout data extension. 
de.cau.cs.kieler.kiml.klayoutdata.util Utility classes for the layout data extension. 
de.cau.cs.kieler.kiml.util Utility classes for automatic layout using KIML. 
de.cau.cs.kieler.klodd.hierarchical.structures The layered graph data structure used internally by the hierarchical dataflow layout algorithm. 
 

Uses of KPoint in de.cau.cs.kieler.kiml.klayoutdata
 

Methods in de.cau.cs.kieler.kiml.klayoutdata that return KPoint
 KPoint KLayoutDataFactory.createKPoint()
          Returns a new object of class 'KPoint'.
 KPoint KEdgeLayout.getSourcePoint()
          Returns the value of the 'Source Point' containment reference.
 KPoint KEdgeLayout.getTargetPoint()
          Returns the value of the 'Target Point' containment reference.
 

Methods in de.cau.cs.kieler.kiml.klayoutdata that return types with arguments of type KPoint
 EList<KPoint> KEdgeLayout.getBendPoints()
          Returns the value of the 'Bend Points' containment reference list.
 

Methods in de.cau.cs.kieler.kiml.klayoutdata with parameters of type KPoint
 void KEdgeLayout.setSourcePoint(KPoint value)
          Sets the value of the 'Source Point' containment reference.
 void KEdgeLayout.setTargetPoint(KPoint value)
          Sets the value of the 'Target Point' containment reference.
 

Uses of KPoint in de.cau.cs.kieler.kiml.klayoutdata.impl
 

Classes in de.cau.cs.kieler.kiml.klayoutdata.impl that implement KPoint
 class KPointImpl
          An implementation of the model object 'KPoint'.
 

Fields in de.cau.cs.kieler.kiml.klayoutdata.impl declared as KPoint
protected  KPoint KEdgeLayoutImpl.sourcePoint
          The cached value of the 'Source Point' containment reference.
protected  KPoint KEdgeLayoutImpl.targetPoint
          The cached value of the 'Target Point' containment reference.
 

Fields in de.cau.cs.kieler.kiml.klayoutdata.impl with type parameters of type KPoint
protected  EList<KPoint> KEdgeLayoutImpl.bendPoints
          The cached value of the 'Bend Points' containment reference list.
 

Methods in de.cau.cs.kieler.kiml.klayoutdata.impl that return KPoint
 KPoint KLayoutDataFactoryImpl.createKPoint()
           
 KPoint KEdgeLayoutImpl.getSourcePoint()
           
 KPoint KEdgeLayoutImpl.getTargetPoint()
           
 

Methods in de.cau.cs.kieler.kiml.klayoutdata.impl that return types with arguments of type KPoint
 EList<KPoint> KEdgeLayoutImpl.getBendPoints()
           
 

Methods in de.cau.cs.kieler.kiml.klayoutdata.impl with parameters of type KPoint
 NotificationChain KEdgeLayoutImpl.basicSetSourcePoint(KPoint newSourcePoint, NotificationChain msgs)
           
 NotificationChain KEdgeLayoutImpl.basicSetTargetPoint(KPoint newTargetPoint, NotificationChain msgs)
           
 void KEdgeLayoutImpl.setSourcePoint(KPoint newSourcePoint)
           
 void KEdgeLayoutImpl.setTargetPoint(KPoint newTargetPoint)
           
 

Uses of KPoint in de.cau.cs.kieler.kiml.klayoutdata.util
 

Methods in de.cau.cs.kieler.kiml.klayoutdata.util with parameters of type KPoint
 T KLayoutDataSwitch.caseKPoint(KPoint object)
          Returns the result of interpreting the object as an instance of 'KPoint'.
 

Uses of KPoint in de.cau.cs.kieler.kiml.util
 

Methods in de.cau.cs.kieler.kiml.util with parameters of type KPoint
static void KimlUtil.translate(KPoint point, float xoffset, float yoffset)
          Translates the given point by an offset.
 

Method parameters in de.cau.cs.kieler.kiml.util with type arguments of type KPoint
static void KimlUtil.placePoints(List<KPoint> points, float minPos, float maxPos, float offset, boolean vertical, boolean forward)
          Determines positions of a sorted set of points by placing them with equal distances.
 

Uses of KPoint in de.cau.cs.kieler.klodd.hierarchical.structures
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return KPoint
 KPoint LayerElement.getPosition()
          Gets the current position of this layer element.
 KPoint LayeredGraph.getPosition()
          Gets the current layout position of this layered graph.
 KPoint LayerElement.getPosOffset()
          Gets the current position offset of the contained node, or null if the contained object is not a node.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures that return types with arguments of type KPoint
 List<KPoint> ElementLoop.getBendPoints()
          Returns the bendPoints.
 List<KPoint> LayerConnection.getBendPoints()
          Returns the bend points.
 

Methods in de.cau.cs.kieler.klodd.hierarchical.structures with parameters of type KPoint
 void ElementLoop.applyLayout(KPoint offset)
          Applies the layout of this element loop to the contained edge.
 void LayerConnection.applyLayout(KPoint offset, KInsets insets)
          Applies the layout of this layer connection to the contained edge.
 void LayerElement.applyLayout(KPoint offset, KInsets insets)
          Applies the layout of this layer element to the contained object and updates position information according to given offset values.