use of org.obeonetwork.dsl.cinematic.flow.ViewState in project InformationSystem by ObeoNetwork.
the class ViewStateViewStatePropertiesEditionComponent 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 ViewState viewState = (ViewState) elt;
final ViewStatePropertiesEditionPart viewStatePart = (ViewStatePropertiesEditionPart) editingPart;
// init values
if (isAccessible(FlowViewsRepository.ViewState.Properties.description))
viewStatePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, viewState.getDescription()));
if (isAccessible(FlowViewsRepository.ViewState.Properties.actions)) {
actionsSettings = new ReferencesTableSettings(viewState, FlowPackage.eINSTANCE.getFlowState_Actions());
viewStatePart.initActions(actionsSettings);
}
if (isAccessible(FlowViewsRepository.ViewState.Properties.name))
viewStatePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, viewState.getName()));
if (isAccessible(FlowViewsRepository.ViewState.Properties.newInstance)) {
viewStatePart.setNewInstance(viewState.isNewInstance());
}
if (isAccessible(FlowViewsRepository.ViewState.Properties.refresh)) {
viewStatePart.setRefresh(viewState.isRefresh());
}
if (isAccessible(FlowViewsRepository.ViewState.Properties.viewContainers)) {
viewContainersSettings = new ReferencesTableSettings(viewState, FlowPackage.eINSTANCE.getViewState_ViewContainers());
viewStatePart.initViewContainers(viewContainersSettings);
}
if (isAccessible(FlowViewsRepository.ViewState.Properties.actions)) {
viewStatePart.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.ViewState.Properties.viewContainers)) {
viewStatePart.addFilterToViewContainers(new EObjectFilter(ViewPackage.Literals.VIEW_CONTAINER));
// Start of user code for additional businessfilters for viewContainers
// End of user code
}
// init values for referenced views
// init filters for referenced views
}
setInitializing(false);
}
use of org.obeonetwork.dsl.cinematic.flow.ViewState in project InformationSystem by ObeoNetwork.
the class ViewStateViewStatePropertiesEditionComponent 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) {
ViewState viewState = (ViewState) semanticObject;
if (FlowViewsRepository.ViewState.Properties.description == event.getAffectedEditor()) {
viewState.setDescription((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.ViewState.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.ViewState.Properties.name == event.getAffectedEditor()) {
viewState.setName((java.lang.String) EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String) event.getNewValue()));
}
if (FlowViewsRepository.ViewState.Properties.newInstance == event.getAffectedEditor()) {
viewState.setNewInstance((Boolean) event.getNewValue());
}
if (FlowViewsRepository.ViewState.Properties.refresh == event.getAffectedEditor()) {
viewState.setRefresh((Boolean) event.getNewValue());
}
if (FlowViewsRepository.ViewState.Properties.viewContainers == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
if (event.getNewValue() instanceof ViewContainer) {
viewContainersSettings.addToReference((EObject) event.getNewValue());
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
viewContainersSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
viewContainersSettings.move(event.getNewIndex(), (ViewContainer) event.getNewValue());
}
}
}
use of org.obeonetwork.dsl.cinematic.flow.ViewState 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.ViewState 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;
}
Aggregations