Uses of Class
de.cau.cs.kieler.kiml.LayoutOptionData

Packages that use LayoutOptionData
de.cau.cs.kieler.kaom.custom Classes for custom behavior of the KIELER Actor Oriented Modeling editor. 
de.cau.cs.kieler.keg.diagram.custom Custom code for KEG diagram. 
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.config Interfaces and default implementations for layout configuration. 
de.cau.cs.kieler.kiml.gmf KIML bridge implementation for GMF, the Graphical Modeling Framework. 
de.cau.cs.kieler.kiml.graphiti   
de.cau.cs.kieler.kiml.ui Base package of the KIML user interface. 
de.cau.cs.kieler.kiml.ui.preferences Preferences for KIML. 
de.cau.cs.kieler.kiml.ui.service Layout service extensions for the Eclipse UI. 
de.cau.cs.kieler.kiml.ui.util Utility classes for the KIML UI plugin. 
de.cau.cs.kieler.kiml.ui.views Views for the KIML UI. 
de.cau.cs.kieler.synccharts.diagram.custom General classes that depend on the synccharts diagram editor. 
 

Uses of LayoutOptionData in de.cau.cs.kieler.kaom.custom
 

Methods in de.cau.cs.kieler.kaom.custom with parameters of type LayoutOptionData
protected  Object AnnotationsLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  Object TypeLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  void AnnotationsLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
protected  void TypeLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
 

Uses of LayoutOptionData in de.cau.cs.kieler.keg.diagram.custom
 

Methods in de.cau.cs.kieler.keg.diagram.custom with parameters of type LayoutOptionData
protected  Object HypernodeLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  void HypernodeLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
 

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

Methods in de.cau.cs.kieler.kiml that return LayoutOptionData
 LayoutOptionData<?> LayoutDataService.getOptionData(String id)
          Returns the layout option data associated with the given identifier.
 LayoutOptionData<?> LayoutDataService.getOptionDataBySuffix(String suffix)
          Returns a layout option data that has the given suffix in its identifier.
 

Methods in de.cau.cs.kieler.kiml that return types with arguments of type LayoutOptionData
 Collection<LayoutOptionData<?>> LayoutDataService.getOptionData()
          Returns a data collection for all registered layout options.
 List<LayoutOptionData<?>> LayoutDataService.getOptionData(LayoutAlgorithmData algorithmData, LayoutOptionData.Target targetType)
          Returns a list of layout options that are suitable for the given layout algorithm and layout option target.
 

Methods in de.cau.cs.kieler.kiml with parameters of type LayoutOptionData
 void LayoutDataService.Registry.addLayoutOption(LayoutOptionData<?> optionData)
          Registers the given layout option.
 Object LayoutAlgorithmData.getDefaultValue(LayoutOptionData<?> optionData)
          Returns the layout algorithm's default value for the given option.
 boolean LayoutAlgorithmData.knowsOption(LayoutOptionData<?> optionData)
          Determines whether the layout algorithm knows the given layout option.
 void LayoutAlgorithmData.setOption(LayoutOptionData<?> optionData, Object defaultValue)
          Sets the knowledge status of the given layout option.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.config
 

Fields in de.cau.cs.kieler.kiml.config with type parameters of type LayoutOptionData
static IProperty<List<LayoutOptionData<?>>> DefaultLayoutConfig.OPTIONS
          the layout options that are supported by the active layout algorithm.
 

Methods in de.cau.cs.kieler.kiml.config with parameters of type LayoutOptionData
protected abstract  Object SemanticLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
 Object CompoundLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 Object DefaultLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 Object ILayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 Object SemanticLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 Object VolatileLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 boolean CompoundLayoutConfig.isSet(LayoutOptionData<?> optionData, LayoutContext context)
          Determine whether the given layout option is set, not considering any default values.
 boolean IMutableLayoutConfig.isSet(LayoutOptionData<?> optionData, LayoutContext context)
          Determine whether the given layout option is set, not considering any default values.
 boolean SemanticLayoutConfig.isSet(LayoutOptionData<?> optionData, LayoutContext context)
          Determine whether the given layout option is set, not considering any default values.
protected abstract  void SemanticLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
 void CompoundLayoutConfig.setValue(LayoutOptionData<?> optionData, LayoutContext context, Object value)
          Set a new value for a layout option in the given context.
 void IMutableLayoutConfig.setValue(LayoutOptionData<?> optionData, LayoutContext context, Object value)
          Set a new value for a layout option in the given context.
 void SemanticLayoutConfig.setValue(LayoutOptionData<?> optionData, LayoutContext context, Object value)
          Set a new value for a layout option in the given context.
 

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

Methods in de.cau.cs.kieler.kiml.gmf with parameters of type LayoutOptionData
 Object GmfLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 boolean GmfLayoutConfig.isSet(LayoutOptionData<?> optionData, LayoutContext context)
          Determine whether the given layout option is set, not considering any default values.
 void GmfLayoutConfig.setValue(LayoutOptionData<?> optionData, LayoutContext context, Object value)
          Set a new value for a layout option in the given context.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.graphiti
 

Methods in de.cau.cs.kieler.kiml.graphiti with parameters of type LayoutOptionData
 Object GraphitiLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 boolean GraphitiLayoutConfig.isSet(LayoutOptionData<?> optionData, LayoutContext context)
          Determine whether the given layout option is set, not considering any default values.
 void GraphitiLayoutConfig.setValue(LayoutOptionData<?> optionData, LayoutContext context, Object value)
          Set a new value for a layout option in the given context.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.ui
 

Constructors in de.cau.cs.kieler.kiml.ui with parameters of type LayoutOptionData
LayoutOptionValidator(LayoutOptionData<?> theoptionData)
          Creates a layout option validator for a layout option data.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.ui.preferences
 

Methods in de.cau.cs.kieler.kiml.ui.preferences that return LayoutOptionData
 LayoutOptionData<?> OptionsTableProvider.DataEntry.getOptionData()
          Returns the option data.
 

Constructors in de.cau.cs.kieler.kiml.ui.preferences with parameters of type LayoutOptionData
OptionsTableProvider.DataEntry(String name, String id, ElementType thetype, LayoutOptionData<?> theoptionData, Object thevalue)
          Creates a data entry.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.ui.service
 

Methods in de.cau.cs.kieler.kiml.ui.service with parameters of type LayoutOptionData
 Object EclipseLayoutConfig.getValue(LayoutOptionData<?> optionData, LayoutContext context)
          Get the current value for a layout option in the given context.
 void EclipseLayoutInfoService.storeOption(EditPart editPart, LayoutOptionData<?> optionData, String valueString, boolean storeDomainModel)
          Stores the layout option with given value for the edit part.
 void EclipseLayoutInfoService.storeOption(String diagramType, LayoutOptionData<?> optionData, String valueString)
          Stores the layout option with given value for the diagram type.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.ui.util
 

Methods in de.cau.cs.kieler.kiml.ui.util that return LayoutOptionData
static LayoutOptionData<?> KimlUiUtil.getOptionData(LayoutAlgorithmData[] providerDataArray, String displayName)
          Retrieves a suitable layout option data instance that matches the given user friendly display name.
static LayoutOptionData<?> KimlUiUtil.getOptionData(LayoutAlgorithmData providerData, String optionName)
          Returns the layout option data that matches the given user-friendly name and is known by the given layout provider.
 

Uses of LayoutOptionData in de.cau.cs.kieler.kiml.ui.views
 

Constructors in de.cau.cs.kieler.kiml.ui.views with parameters of type LayoutOptionData
LayoutPropertyDescriptor(LayoutOptionData<?> theoptionData)
          Creates a layout property descriptor based on a specific layout option.
 

Uses of LayoutOptionData in de.cau.cs.kieler.synccharts.diagram.custom
 

Methods in de.cau.cs.kieler.synccharts.diagram.custom with parameters of type LayoutOptionData
protected  Object ActionLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  Object AnnotationsLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  Object HVLayoutConfig.getSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption)
          Determine the value of the given layout option from the semantic element.
protected  void ActionLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
protected  void AnnotationsLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.
protected  void HVLayoutConfig.setSemanticValue(EObject semanticElem, LayoutOptionData<?> layoutOption, Object value)
          Set a layout option value for the semantic element.