Search in sources :

Example 1 with InitialStatePropertiesEditionPart

use of org.obeonetwork.dsl.cinematic.flow.parts.InitialStatePropertiesEditionPart 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);
}
Also used : ReferencesTableSettings(org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings) InitialState(org.obeonetwork.dsl.cinematic.flow.InitialState) ViewerFilter(org.eclipse.jface.viewers.ViewerFilter) FlowAction(org.obeonetwork.dsl.cinematic.flow.FlowAction) InitialStatePropertiesEditionPart(org.obeonetwork.dsl.cinematic.flow.parts.InitialStatePropertiesEditionPart) Viewer(org.eclipse.jface.viewers.Viewer) EObject(org.eclipse.emf.ecore.EObject)

Aggregations

EObject (org.eclipse.emf.ecore.EObject)1 ReferencesTableSettings (org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings)1 Viewer (org.eclipse.jface.viewers.Viewer)1 ViewerFilter (org.eclipse.jface.viewers.ViewerFilter)1 FlowAction (org.obeonetwork.dsl.cinematic.flow.FlowAction)1 InitialState (org.obeonetwork.dsl.cinematic.flow.InitialState)1 InitialStatePropertiesEditionPart (org.obeonetwork.dsl.cinematic.flow.parts.InitialStatePropertiesEditionPart)1