/** * Generated with Acceleo */ package com.github.lbroudoux.dsl.eip.components; // Start of user code for imports import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.util.BasicDiagnostic; import org.eclipse.emf.common.util.Diagnostic; import org.eclipse.emf.common.util.WrappedException; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.emf.ecore.EcorePackage; import org.eclipse.emf.ecore.resource.ResourceSet; import org.eclipse.emf.ecore.util.Diagnostician; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.eef.runtime.api.notify.EStructuralFeatureNotificationFilter; import org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent; import org.eclipse.emf.eef.runtime.api.notify.NotificationFilter; import org.eclipse.emf.eef.runtime.context.PropertiesEditingContext; import org.eclipse.emf.eef.runtime.context.impl.EObjectPropertiesEditionContext; import org.eclipse.emf.eef.runtime.context.impl.EReferencePropertiesEditionContext; import org.eclipse.emf.eef.runtime.impl.components.SinglePartPropertiesEditingComponent; import org.eclipse.emf.eef.runtime.impl.filters.EObjectFilter; import org.eclipse.emf.eef.runtime.impl.notify.PropertiesEditionEvent; import org.eclipse.emf.eef.runtime.impl.utils.EEFConverterUtil; import org.eclipse.emf.eef.runtime.impl.utils.EEFUtils; import org.eclipse.emf.eef.runtime.policies.PropertiesEditingPolicy; import org.eclipse.emf.eef.runtime.policies.impl.CreateEditingPolicy; import org.eclipse.emf.eef.runtime.providers.PropertiesEditingProvider; import org.eclipse.emf.eef.runtime.ui.widgets.referencestable.ReferencesTableSettings; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.viewers.ViewerFilter; import com.github.lbroudoux.dsl.eip.Channel; import com.github.lbroudoux.dsl.eip.ConditionalRoute; import com.github.lbroudoux.dsl.eip.EipPackage; import com.github.lbroudoux.dsl.eip.Router; import com.github.lbroudoux.dsl.eip.RoutingType; import com.github.lbroudoux.dsl.eip.parts.EipViewsRepository; import com.github.lbroudoux.dsl.eip.parts.RouterPropertiesEditionPart; // End of user code /** * @author yanngv29 * */ public class RouterPropertiesEditionComponent extends SinglePartPropertiesEditingComponent { public static String BASE_PART = "Base"; //$NON-NLS-1$ /** * Settings for toChannels ReferencesTable */ private ReferencesTableSettings toChannelsSettings; /** * Settings for fromChannels ReferencesTable */ private ReferencesTableSettings fromChannelsSettings; /** * Settings for ownedRoutes ReferencesTable */ protected ReferencesTableSettings ownedRoutesSettings; /** * Default constructor * */ public RouterPropertiesEditionComponent(PropertiesEditingContext editingContext, EObject router, String editing_mode) { super(editingContext, router, editing_mode); parts = new String[] { BASE_PART }; repositoryKey = EipViewsRepository.class; partKey = EipViewsRepository.Router.class; } /** * {@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 Router router = (Router)elt; final RouterPropertiesEditionPart basePart = (RouterPropertiesEditionPart)editingPart; // init values if (isAccessible(EipViewsRepository.Router.Properties.name)) basePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, router.getName())); if (isAccessible(EipViewsRepository.Router.Properties.toChannels)) { toChannelsSettings = new ReferencesTableSettings(router, EipPackage.eINSTANCE.getEndpoint_ToChannels()); basePart.initToChannels(toChannelsSettings); } if (isAccessible(EipViewsRepository.Router.Properties.fromChannels)) { fromChannelsSettings = new ReferencesTableSettings(router, EipPackage.eINSTANCE.getEndpoint_FromChannels()); basePart.initFromChannels(fromChannelsSettings); } if (isAccessible(EipViewsRepository.Router.Properties.ownedRoutes)) { ownedRoutesSettings = new ReferencesTableSettings(router, EipPackage.eINSTANCE.getRouter_OwnedRoutes()); basePart.initOwnedRoutes(ownedRoutesSettings); } if (isAccessible(EipViewsRepository.Router.Properties.type)) { basePart.initType(EEFUtils.choiceOfValues(router, EipPackage.eINSTANCE.getRouter_Type()), router.getType()); } // init filters if (isAccessible(EipViewsRepository.Router.Properties.toChannels)) { basePart.addFilterToToChannels(new EObjectFilter(EipPackage.Literals.CHANNEL)); // Start of user code for additional businessfilters for toChannels // End of user code } if (isAccessible(EipViewsRepository.Router.Properties.fromChannels)) { basePart.addFilterToFromChannels(new EObjectFilter(EipPackage.Literals.CHANNEL)); // Start of user code for additional businessfilters for fromChannels // End of user code } if (isAccessible(EipViewsRepository.Router.Properties.ownedRoutes)) { basePart.addFilterToOwnedRoutes(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 String && element.equals("")) || (element instanceof ConditionalRoute); //$NON-NLS-1$ } }); // Start of user code for additional businessfilters for ownedRoutes // End of user code } // init values for referenced views // init filters for referenced views } setInitializing(false); } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#associatedFeature(java.lang.Object) */ public EStructuralFeature associatedFeature(Object editorKey) { if (editorKey == EipViewsRepository.Router.Properties.name) { return EipPackage.eINSTANCE.getEndpoint_Name(); } if (editorKey == EipViewsRepository.Router.Properties.toChannels) { return EipPackage.eINSTANCE.getEndpoint_ToChannels(); } if (editorKey == EipViewsRepository.Router.Properties.fromChannels) { return EipPackage.eINSTANCE.getEndpoint_FromChannels(); } if (editorKey == EipViewsRepository.Router.Properties.ownedRoutes) { return EipPackage.eINSTANCE.getRouter_OwnedRoutes(); } if (editorKey == EipViewsRepository.Router.Properties.type) { return EipPackage.eINSTANCE.getRouter_Type(); } return super.associatedFeature(editorKey); } /** * {@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) { Router router = (Router)semanticObject; if (EipViewsRepository.Router.Properties.name == event.getAffectedEditor()) { router.setName((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue())); } if (EipViewsRepository.Router.Properties.toChannels == event.getAffectedEditor()) { if (event.getKind() == PropertiesEditionEvent.ADD) { if (event.getNewValue() instanceof Channel) { toChannelsSettings.addToReference((EObject) event.getNewValue()); } } else if (event.getKind() == PropertiesEditionEvent.REMOVE) { toChannelsSettings.removeFromReference((EObject) event.getNewValue()); } else if (event.getKind() == PropertiesEditionEvent.MOVE) { toChannelsSettings.move(event.getNewIndex(), (Channel) event.getNewValue()); } } if (EipViewsRepository.Router.Properties.fromChannels == event.getAffectedEditor()) { if (event.getKind() == PropertiesEditionEvent.ADD) { if (event.getNewValue() instanceof Channel) { fromChannelsSettings.addToReference((EObject) event.getNewValue()); } } else if (event.getKind() == PropertiesEditionEvent.REMOVE) { fromChannelsSettings.removeFromReference((EObject) event.getNewValue()); } else if (event.getKind() == PropertiesEditionEvent.MOVE) { fromChannelsSettings.move(event.getNewIndex(), (Channel) event.getNewValue()); } } if (EipViewsRepository.Router.Properties.ownedRoutes == event.getAffectedEditor()) { if (event.getKind() == PropertiesEditionEvent.ADD) { EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, ownedRoutesSettings, 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) { ownedRoutesSettings.removeFromReference((EObject) event.getNewValue()); } else if (event.getKind() == PropertiesEditionEvent.MOVE) { ownedRoutesSettings.move(event.getNewIndex(), (ConditionalRoute) event.getNewValue()); } } if (EipViewsRepository.Router.Properties.type == event.getAffectedEditor()) { router.setType((RoutingType)event.getNewValue()); } } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updatePart(org.eclipse.emf.common.notify.Notification) */ public void updatePart(Notification msg) { super.updatePart(msg); if (editingPart.isVisible()) { RouterPropertiesEditionPart basePart = (RouterPropertiesEditionPart)editingPart; if (EipPackage.eINSTANCE.getEndpoint_Name().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(EipViewsRepository.Router.Properties.name)) { if (msg.getNewValue() != null) { basePart.setName(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue())); } else { basePart.setName(""); } } if (EipPackage.eINSTANCE.getEndpoint_ToChannels().equals(msg.getFeature()) && isAccessible(EipViewsRepository.Router.Properties.toChannels)) basePart.updateToChannels(); if (EipPackage.eINSTANCE.getEndpoint_FromChannels().equals(msg.getFeature()) && isAccessible(EipViewsRepository.Router.Properties.fromChannels)) basePart.updateFromChannels(); if (EipPackage.eINSTANCE.getRouter_OwnedRoutes().equals(msg.getFeature()) && isAccessible(EipViewsRepository.Router.Properties.ownedRoutes)) basePart.updateOwnedRoutes(); if (EipPackage.eINSTANCE.getRouter_Type().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && isAccessible(EipViewsRepository.Router.Properties.type)) basePart.setType((RoutingType)msg.getNewValue()); } } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#getNotificationFilters() */ @Override protected NotificationFilter[] getNotificationFilters() { NotificationFilter filter = new EStructuralFeatureNotificationFilter( EipPackage.eINSTANCE.getEndpoint_Name(), EipPackage.eINSTANCE.getEndpoint_ToChannels(), EipPackage.eINSTANCE.getEndpoint_FromChannels(), EipPackage.eINSTANCE.getRouter_OwnedRoutes(), EipPackage.eINSTANCE.getRouter_Type() ); return new NotificationFilter[] {filter,}; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#isRequired(java.lang.Object, int) * */ public boolean isRequired(Object key, int kind) { return key == EipViewsRepository.Router.Properties.name; } /** * {@inheritDoc} * * @see org.eclipse.emf.eef.runtime.api.component.IPropertiesEditionComponent#validateValue(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent) * */ public Diagnostic validateValue(IPropertiesEditionEvent event) { Diagnostic ret = Diagnostic.OK_INSTANCE; if (event.getNewValue() != null) { try { if (EipViewsRepository.Router.Properties.name == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EEFConverterUtil.createFromString(EipPackage.eINSTANCE.getEndpoint_Name().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(EipPackage.eINSTANCE.getEndpoint_Name().getEAttributeType(), newValue); } if (EipViewsRepository.Router.Properties.type == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EEFConverterUtil.createFromString(EipPackage.eINSTANCE.getRouter_Type().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(EipPackage.eINSTANCE.getRouter_Type().getEAttributeType(), newValue); } } catch (IllegalArgumentException iae) { ret = BasicDiagnostic.toDiagnostic(iae); } catch (WrappedException we) { ret = BasicDiagnostic.toDiagnostic(we); } } return ret; } }