use of org.obeonetwork.dsl.cinematic.flow.FlowState in project InformationSystem by ObeoNetwork.
the class FlowFlowPropertiesEditionComponent 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) {
Flow flow = (Flow) semanticObject;
if (FlowViewsRepository.Flow_.Properties.description == event.getAffectedEditor()) {
flow.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.Flow_.Properties.name == event.getAffectedEditor()) {
flow.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.Flow_.Properties.states == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, statesSettings, 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) {
statesSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
statesSettings.move(event.getNewIndex(), (FlowState) event.getNewValue());
}
}
if (FlowViewsRepository.Flow_.Properties.transitions == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, transitionsSettings, 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) {
transitionsSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
transitionsSettings.move(event.getNewIndex(), (Transition) event.getNewValue());
}
}
if (FlowViewsRepository.Flow_.Properties.events == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, eventsSettings, 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) {
eventsSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
eventsSettings.move(event.getNewIndex(), (FlowEvent) event.getNewValue());
}
}
}
use of org.obeonetwork.dsl.cinematic.flow.FlowState in project InformationSystem by ObeoNetwork.
the class TransitionTransitionPropertiesEditionComponent 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 Transition transition = (Transition) elt;
final TransitionPropertiesEditionPart transitionPart = (TransitionPropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.Transition.Properties.description))
transitionPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, transition.getDescription()));
if (isAccessible(FlowViewsRepository.Transition.Properties.name))
transitionPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, transition.getName()));
if (isAccessible(FlowViewsRepository.Transition.Properties.guard))
transitionPart.setGuard(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, transition.getGuard()));
if (isAccessible(FlowViewsRepository.Transition.Properties.modal)) {
transitionPart.setModal(transition.isModal());
}
if (isAccessible(FlowViewsRepository.Transition.Properties.from)) {
// init part
fromSettings = new EObjectFlatComboSettings(transition, FlowPackage.eINSTANCE.getTransition_From());
transitionPart.initFrom(fromSettings);
// set the button mode
transitionPart.setFromButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(FlowViewsRepository.Transition.Properties.to)) {
// init part
toSettings = new EObjectFlatComboSettings(transition, FlowPackage.eINSTANCE.getTransition_To());
transitionPart.initTo(toSettings);
// set the button mode
transitionPart.setToButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(FlowViewsRepository.Transition.Properties.on)) {
onSettings = new ReferencesTableSettings(transition, FlowPackage.eINSTANCE.getTransition_On());
transitionPart.initOn(onSettings);
}
if (isAccessible(FlowViewsRepository.Transition.Properties.from)) {
transitionPart.addFilterToFrom(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 FlowState);
}
});
// Start of user code for additional businessfilters for from
// End of user code
}
if (isAccessible(FlowViewsRepository.Transition.Properties.to)) {
transitionPart.addFilterToTo(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 FlowState);
}
});
// Start of user code for additional businessfilters for to
// End of user code
}
if (isAccessible(FlowViewsRepository.Transition.Properties.on)) {
transitionPart.addFilterToOn(new EObjectFilter(CinematicPackage.Literals.EVENT));
// Start of user code for additional businessfilters for on
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
use of org.obeonetwork.dsl.cinematic.flow.FlowState in project InformationSystem by ObeoNetwork.
the class CinematicServices method getNextStates.
/**
* Return a collection of {@link ActionState} and/or {@link ViewState}
* associated with the given {@link FlowState}.
*
* @param flowState
* the given {@link FlowState}.
* @param event
* the given {@link Event}.
* @return a collection of {@link FlowState}.
*/
public Set<FlowState> getNextStates(FlowState flowState, Event event) {
Set<FlowState> nexts = new HashSet<FlowState>();
if (flowState instanceof SubflowState) {
Flow flow = ((SubflowState) flowState).getSubflow();
if (flow != null) {
InitialState initialState = getInitialState(flow);
nexts.addAll(getNextStates(initialState, null));
}
} else if (flowState instanceof ViewState || flowState instanceof ActionState || flowState instanceof InitialState || flowState instanceof DecisionState) {
Flow flow = getFlow(flowState);
if (flow != null) {
for (Transition transition : flow.getTransitions()) {
FlowState from = transition.getFrom();
FlowState to = transition.getTo();
Collection<Event> on = transition.getOn();
if (from != null && to != null && from.equals(flowState) && (on.contains(event) || event == null)) {
if (to instanceof ViewState) {
nexts.add((ViewState) to);
} else if (to instanceof ActionState) {
nexts.add((ActionState) to);
} else if (to instanceof SubflowState) {
nexts.addAll(getNextStates((SubflowState) to, null));
} else if (to instanceof DecisionState) {
nexts.addAll(getNextStates((DecisionState) to, null));
} else if (to instanceof FinalState) {
Set<SubflowState> subflows = getAllSubFlowStates(flow);
Set<Transition> transitions = getAllTransitions(flow);
for (SubflowState subflowState : subflows) {
if (flow.equals(subflowState.getSubflow())) {
for (Transition transitionTmp : transitions) {
FlowState fromTmp = transitionTmp.getFrom();
FlowState toTmp = transitionTmp.getTo();
if (from != null && to != null && fromTmp.equals(subflowState)) {
nexts.add(toTmp);
}
}
}
}
}
}
}
}
}
return nexts;
}
use of org.obeonetwork.dsl.cinematic.flow.FlowState in project InformationSystem by ObeoNetwork.
the class CinematicFlowServices method getViewContainerAssociate.
/**
* Retrieve the view container associate to flow
*
* @param context
* the context. In this case should be a flow
* @return the list of view Container associate to the flow
*/
private List<ViewContainer> getViewContainerAssociate(EObject context) {
List<ViewContainer> viewContainers = new ArrayList<ViewContainer>();
if (context instanceof Flow) {
Flow flow = (Flow) context;
// Retrieve the flow's states
EList<FlowState> states = flow.getStates();
List<ViewState> viewStates = new ArrayList<ViewState>();
// Retrieve the View state type in the states list
for (FlowState state : states) {
if (state instanceof ViewState) {
viewStates.add((ViewState) state);
}
}
// Retrieve all viewContainers contained in the view State
for (ViewState viewState : viewStates) {
viewContainers.addAll(viewState.getViewContainers());
}
}
return viewContainers;
}
use of org.obeonetwork.dsl.cinematic.flow.FlowState in project InformationSystem by ObeoNetwork.
the class FlowFlowPropertiesEditionComponent 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 Flow flow = (Flow) elt;
final FlowPropertiesEditionPart flowPart = (FlowPropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.Flow_.Properties.description))
flowPart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, flow.getDescription()));
if (isAccessible(FlowViewsRepository.Flow_.Properties.name))
flowPart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, flow.getName()));
if (isAccessible(FlowViewsRepository.Flow_.Properties.states)) {
statesSettings = new ReferencesTableSettings(flow, FlowPackage.eINSTANCE.getFlow_States());
flowPart.initStates(statesSettings);
}
if (isAccessible(FlowViewsRepository.Flow_.Properties.transitions)) {
transitionsSettings = new ReferencesTableSettings(flow, FlowPackage.eINSTANCE.getFlow_Transitions());
flowPart.initTransitions(transitionsSettings);
}
if (isAccessible(FlowViewsRepository.Flow_.Properties.events)) {
eventsSettings = new ReferencesTableSettings(flow, FlowPackage.eINSTANCE.getFlow_Events());
flowPart.initEvents(eventsSettings);
}
if (isAccessible(FlowViewsRepository.Flow_.Properties.states)) {
flowPart.addFilterToStates(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 FlowState);
}
});
// Start of user code for additional businessfilters for states
// End of user code
}
if (isAccessible(FlowViewsRepository.Flow_.Properties.transitions)) {
flowPart.addFilterToTransitions(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 Transition);
}
});
// Start of user code for additional businessfilters for transitions
// End of user code
}
if (isAccessible(FlowViewsRepository.Flow_.Properties.events)) {
flowPart.addFilterToEvents(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 FlowEvent);
}
});
// Start of user code for additional businessfilters for events
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
Aggregations