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

Packages that use KLayoutData
de.cau.cs.kieler.kiml Base classes for implementation of layout algorithms and for handling of different layout providers and layout options. 
de.cau.cs.kieler.kiml.gmf KIML bridge implementation for GMF, the Graphical Modeling Framework. 
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.options Definition of layout options for automatic layout. 
 

Uses of KLayoutData in de.cau.cs.kieler.kiml
 

Methods in de.cau.cs.kieler.kiml with parameters of type KLayoutData
 void LayoutOptionData.setValue(KLayoutData layoutData, Object value)
          Sets the given value of this layout option in the given layout data.
 

Uses of KLayoutData in de.cau.cs.kieler.kiml.gmf
 

Methods in de.cau.cs.kieler.kiml.gmf with parameters of type KLayoutData
static void GmfLayoutInspector.setLayoutOptions(org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart editPart, KLayoutData layoutData, boolean setUserOptions)
          Sets all predefined and user defined layout options for the given edit part.
 

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

Subinterfaces of KLayoutData in de.cau.cs.kieler.kiml.klayoutdata
 interface KEdgeLayout
          A representation of the model object 'Edge Layout'.
 interface KShapeLayout
          A representation of the model object 'Shape Layout'.
 

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

Classes in de.cau.cs.kieler.kiml.klayoutdata.impl that implement KLayoutData
 class KEdgeLayoutImpl
          An implementation of the model object 'KEdge Layout'.
 class KLayoutDataImpl
          An implementation of the model object 'KLayout Data'.
 class KShapeLayoutImpl
          An implementation of the model object 'KShape Layout'.
 

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

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

Uses of KLayoutData in de.cau.cs.kieler.kiml.options
 

Methods in de.cau.cs.kieler.kiml.options with parameters of type KLayoutData
static boolean LayoutOptions.getBoolean(KLayoutData layoutData, String optionId)
          Returns a boolean valued option for a given layout data instance.
static
<T extends Enum<?>>
T
LayoutOptions.getEnum(KLayoutData layoutData, Class<T> enumClass)
          Returns an enumeration valued option for a given layout data instance.
static float LayoutOptions.getFloat(KLayoutData layoutData, String optionId)
          Returns a float valued option for a given layout data instance.
static int LayoutOptions.getInt(KLayoutData layoutData, String optionId)
          Returns an integer valued option for a given layout data instance.
static
<T extends EObject>
T
LayoutOptions.getObject(KLayoutData layoutData, Class<T> clazz)
          Returns the insets for a given layout data instance.
static String LayoutOptions.getString(KLayoutData layoutData, String optionId)
          Returns a string valued option for a given layout data instance.
static void LayoutOptions.setBoolean(KLayoutData layoutData, String optionId, boolean value)
          Sets a boolean valued option for a given layout data instance.
static void LayoutOptions.setEnum(KLayoutData layoutData, Enum<?> value)
          Sets an enumeration valued option for the given layout data instance.
static void LayoutOptions.setFloat(KLayoutData layoutData, String optionId, float value)
          Sets a float valued option for the given layout data instance.
static void LayoutOptions.setInt(KLayoutData layoutData, String optionId, int value)
          Sets an integer valued option for the given layout data instance.
static void LayoutOptions.setString(KLayoutData layoutData, String optionId, String value)
          Sets a string valued option for the given layout data instance.