Class ASettingsViewViewModel
- java.lang.Object
-
- de.xima.fc.workflow.designer.bpmn.model.settings.ASettingsViewViewModel
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AssociationSettingsViewModel,BpmnExportSettingsViewModel,DataObjectSettingsViewModel,DataStoreSettingsViewModel,EventSettingsViewModel,GatewaySettingsViewModel,GeneralSettingsViewModel,InteroperabilitySettingsViewModel,LaneSettingsViewModel,ParticipantSettingsViewModel,SequenceFlowSettingsViewModel,SubProcessSettingsViewModel,TaskExportSettingsViewModel,TextAnnotationSettingsViewModel
public abstract class ASettingsViewViewModel extends Object implements Serializable
View model for layout settings related to variousBPMN elementsin BPMN diagrams.- Since:
- 8.4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ASettingsViewViewModel()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidapplyFromSettings(IWorkflowBpmnLayoutSettings settings)Applies the settings from the givenIWorkflowBpmnLayoutSettingsinstance to this view model.abstract voidapplyFromSettings(FlowchartToBpmnConverterSettings settings)Applies the settings from the givenFlowchartToBpmnConverterSettingsinstance to this view model.abstract voidapplyToBuilder(WorkflowBpmnLayoutSettings.Builder builder)Applies the settings from this view model to the givenWorkflowBpmnLayoutSettings.Builderinstance.abstract voidapplyToBuilder(FlowchartToBpmnConverterSettings.Builder builder)Applies the settings from this view model to the givenFlowchartToBpmnConverterSettings.Builderinstance.
-
-
-
Method Detail
-
applyFromSettings
public abstract void applyFromSettings(IWorkflowBpmnLayoutSettings settings)
Applies the settings from the givenIWorkflowBpmnLayoutSettingsinstance to this view model.- Parameters:
settings- The settings to apply.
-
applyFromSettings
public abstract void applyFromSettings(FlowchartToBpmnConverterSettings settings)
Applies the settings from the givenFlowchartToBpmnConverterSettingsinstance to this view model.- Parameters:
settings- The settings to apply.
-
applyToBuilder
public abstract void applyToBuilder(WorkflowBpmnLayoutSettings.Builder builder)
Applies the settings from this view model to the givenWorkflowBpmnLayoutSettings.Builderinstance.- Parameters:
builder- The builder to apply settings to.
-
applyToBuilder
public abstract void applyToBuilder(FlowchartToBpmnConverterSettings.Builder builder)
Applies the settings from this view model to the givenFlowchartToBpmnConverterSettings.Builderinstance.- Parameters:
builder- The builder to apply settings to.
-
-