use of org.obeonetwork.dsl.cinematic.flow.FlowAction in project InformationSystem by ObeoNetwork.
the class ActionStateActionStatePropertiesEditionComponent method updateSemanticModel.
/**
* {@inheritDoc}
* @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent)
*/
public void updateSemanticModel(final IPropertiesEditionEvent event) {
ActionState actionState = (ActionState) semanticObject;
if (FlowViewsRepository.ActionState.Properties.description == event.getAffectedEditor()) {
actionState.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.ActionState.Properties.actions == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, actionsSettings, editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt(semanticObject, PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy policy = provider.getPolicy(context);
if (policy instanceof CreateEditingPolicy) {
policy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.EDIT) {
EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, (EObject) event.getNewValue(), editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt((EObject) event.getNewValue(), PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy editionPolicy = provider.getPolicy(context);
if (editionPolicy != null) {
editionPolicy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
actionsSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
actionsSettings.move(event.getNewIndex(), (FlowAction) event.getNewValue());
}
}
if (FlowViewsRepository.ActionState.Properties.name == event.getAffectedEditor()) {
actionState.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
}
use of org.obeonetwork.dsl.cinematic.flow.FlowAction in project InformationSystem by ObeoNetwork.
the class AsyncEventStateAsyncEventStatePropertiesEditionComponent method updateSemanticModel.
/**
* {@inheritDoc}
* @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent)
*/
public void updateSemanticModel(final IPropertiesEditionEvent event) {
AsyncEventState asyncEventState = (AsyncEventState) semanticObject;
if (FlowViewsRepository.AsyncEventState.Properties.description == event.getAffectedEditor()) {
asyncEventState.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.AsyncEventState.Properties.actions == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, actionsSettings, editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt(semanticObject, PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy policy = provider.getPolicy(context);
if (policy instanceof CreateEditingPolicy) {
policy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.EDIT) {
EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, (EObject) event.getNewValue(), editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt((EObject) event.getNewValue(), PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy editionPolicy = provider.getPolicy(context);
if (editionPolicy != null) {
editionPolicy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
actionsSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
actionsSettings.move(event.getNewIndex(), (FlowAction) event.getNewValue());
}
}
if (FlowViewsRepository.AsyncEventState.Properties.name == event.getAffectedEditor()) {
asyncEventState.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
}
use of org.obeonetwork.dsl.cinematic.flow.FlowAction in project InformationSystem by ObeoNetwork.
the class InitialStateInitialStatePropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final InitialState initialState = (InitialState) elt;
final InitialStatePropertiesEditionPart initialStatePart = (InitialStatePropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.InitialState.Properties.description))
initialStatePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, initialState.getDescription()));
if (isAccessible(FlowViewsRepository.InitialState.Properties.actions)) {
actionsSettings = new ReferencesTableSettings(initialState, FlowPackage.eINSTANCE.getFlowState_Actions());
initialStatePart.initActions(actionsSettings);
}
if (isAccessible(FlowViewsRepository.InitialState.Properties.name))
initialStatePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, initialState.getName()));
if (isAccessible(FlowViewsRepository.InitialState.Properties.actions)) {
initialStatePart.addFilterToActions(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof FlowAction);
}
});
// Start of user code for additional businessfilters for actions
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
use of org.obeonetwork.dsl.cinematic.flow.FlowAction in project InformationSystem by ObeoNetwork.
the class SubflowStateSubflowStatePropertiesEditionComponent method updateSemanticModel.
/**
* {@inheritDoc}
* @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent)
*/
public void updateSemanticModel(final IPropertiesEditionEvent event) {
SubflowState subflowState = (SubflowState) semanticObject;
if (FlowViewsRepository.SubflowState.Properties.description == event.getAffectedEditor()) {
subflowState.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.SubflowState.Properties.actions == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, actionsSettings, editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt(semanticObject, PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy policy = provider.getPolicy(context);
if (policy instanceof CreateEditingPolicy) {
policy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.EDIT) {
EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, (EObject) event.getNewValue(), editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt((EObject) event.getNewValue(), PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy editionPolicy = provider.getPolicy(context);
if (editionPolicy != null) {
editionPolicy.execute();
}
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
actionsSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
actionsSettings.move(event.getNewIndex(), (FlowAction) event.getNewValue());
}
}
if (FlowViewsRepository.SubflowState.Properties.subflow == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.SET) {
subflowSettings.setToReference((Flow) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.ADD) {
Flow eObject = FlowFactory.eINSTANCE.createFlow();
EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, eObject, editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider) editingContext.getAdapterFactory().adapt(eObject, PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy policy = provider.getPolicy(context);
if (policy != null) {
policy.execute();
}
}
subflowSettings.setToReference(eObject);
}
}
}
use of org.obeonetwork.dsl.cinematic.flow.FlowAction in project InformationSystem by ObeoNetwork.
the class SubflowStateSubflowStatePropertiesEditionComponent method initPart.
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#initPart(java.lang.Object, int, org.eclipse.emf.ecore.EObject,
* org.eclipse.emf.ecore.resource.ResourceSet)
*/
public void initPart(Object key, int kind, EObject elt, ResourceSet allResource) {
setInitializing(true);
if (editingPart != null && key == partKey) {
editingPart.setContext(elt, allResource);
final SubflowState subflowState = (SubflowState) elt;
final SubflowStatePropertiesEditionPart subflowStatePart = (SubflowStatePropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.SubflowState.Properties.description))
subflowStatePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, subflowState.getDescription()));
if (isAccessible(FlowViewsRepository.SubflowState.Properties.actions)) {
actionsSettings = new ReferencesTableSettings(subflowState, FlowPackage.eINSTANCE.getFlowState_Actions());
subflowStatePart.initActions(actionsSettings);
}
if (isAccessible(FlowViewsRepository.SubflowState.Properties.subflow)) {
// init part
subflowSettings = new EObjectFlatComboSettings(subflowState, FlowPackage.eINSTANCE.getSubflowState_Subflow());
subflowStatePart.initSubflow(subflowSettings);
// set the button mode
subflowStatePart.setSubflowButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(FlowViewsRepository.SubflowState.Properties.actions)) {
subflowStatePart.addFilterToActions(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
// $NON-NLS-1$
return (element instanceof String && element.equals("")) || (element instanceof FlowAction);
}
});
// Start of user code for additional businessfilters for actions
// End of user code
}
if (isAccessible(FlowViewsRepository.SubflowState.Properties.subflow)) {
subflowStatePart.addFilterToSubflow(new ViewerFilter() {
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object)
*/
public boolean select(Viewer viewer, Object parentElement, Object element) {
return (element instanceof Flow);
}
});
// Start of user code for additional businessfilters for subflow
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
Aggregations