use of org.obeonetwork.dsl.cinematic.flow.AbortState in project InformationSystem by ObeoNetwork.
the class AbortStateAbortStatePropertiesEditionComponent 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) {
AbortState abortState = (AbortState) semanticObject;
if (FlowViewsRepository.AbortState.Properties.description == event.getAffectedEditor()) {
abortState.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.AbortState.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.AbortState.Properties.name == event.getAffectedEditor()) {
abortState.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
}
use of org.obeonetwork.dsl.cinematic.flow.AbortState in project InformationSystem by ObeoNetwork.
the class AbortStateAbortStatePropertiesEditionComponent 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 AbortState abortState = (AbortState) elt;
final AbortStatePropertiesEditionPart abortStatePart = (AbortStatePropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.AbortState.Properties.description))
abortStatePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, abortState.getDescription()));
if (isAccessible(FlowViewsRepository.AbortState.Properties.actions)) {
actionsSettings = new ReferencesTableSettings(abortState, FlowPackage.eINSTANCE.getFlowState_Actions());
abortStatePart.initActions(actionsSettings);
}
if (isAccessible(FlowViewsRepository.AbortState.Properties.name))
abortStatePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, abortState.getName()));
if (isAccessible(FlowViewsRepository.AbortState.Properties.actions)) {
abortStatePart.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);
}
Aggregations