/** * Generated with Acceleo */ package org.eclipse.xtext.example.fowlerdsl.statemachine.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.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.IPropertiesEditionEvent; import org.eclipse.emf.eef.runtime.context.PropertiesEditingContext; import org.eclipse.emf.eef.runtime.impl.components.SinglePartPropertiesEditingComponent; import org.eclipse.emf.eef.runtime.impl.utils.EEFConverterUtil; import org.eclipse.xtext.example.fowlerdsl.statemachine.Event; import org.eclipse.xtext.example.fowlerdsl.statemachine.StatemachinePackage; import org.eclipse.xtext.example.fowlerdsl.statemachine.parts.EventPropertiesEditionPart; import org.eclipse.xtext.example.fowlerdsl.statemachine.parts.StatemachineViewsRepository; // End of user code /** * * */ public class EventPropertiesEditionComponent extends SinglePartPropertiesEditingComponent { public static String BASE_PART = "Base"; //$NON-NLS-1$ /** * Default constructor * */ public EventPropertiesEditionComponent(PropertiesEditingContext editingContext, EObject event, String editing_mode) { super(editingContext, event, editing_mode); parts = new String[] { BASE_PART }; repositoryKey = StatemachineViewsRepository.class; partKey = StatemachineViewsRepository.Event.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 Event event = (Event)elt; final EventPropertiesEditionPart basePart = (EventPropertiesEditionPart)editingPart; // init values if (event.getName() != null && isAccessible(StatemachineViewsRepository.Event.Properties.name)) basePart.setName(EEFConverterUtil.convertToString(EcorePackage.eINSTANCE.getEString(), event.getName())); if (event.getCode() != null && isAccessible(StatemachineViewsRepository.Event.Properties.code)) basePart.setCode(EEFConverterUtil.convertToString(EcorePackage.eINSTANCE.getEString(), event.getCode())); // init filters // init values for referenced views // init filters for referenced views } setInitializing(false); } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updateSemanticModel(org.eclipse.emf.eef.runtime.api.notify.IPropertiesEditionEvent) * */ public void updateSemanticModel(final IPropertiesEditionEvent eevent) { Event event = (Event)semanticObject; if (StatemachineViewsRepository.Event.Properties.name == eevent.getAffectedEditor()) { event.setName((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.eINSTANCE.getEString(), (String)eevent.getNewValue())); } if (StatemachineViewsRepository.Event.Properties.code == eevent.getAffectedEditor()) { event.setCode((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.eINSTANCE.getEString(), (String)eevent.getNewValue())); } } /** * {@inheritDoc} * @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#updatePart(org.eclipse.emf.common.notify.Notification) */ public void updatePart(Notification msg) { if (editingPart.isVisible()) { EventPropertiesEditionPart basePart = (EventPropertiesEditionPart)editingPart; if (StatemachinePackage.eINSTANCE.getEvent_Name().equals(msg.getFeature()) && basePart != null && isAccessible(StatemachineViewsRepository.Event.Properties.name)) { if (msg.getNewValue() != null) { basePart.setName(EcoreUtil.convertToString(EcorePackage.eINSTANCE.getEString(), msg.getNewValue())); } else { basePart.setName(""); } } if (StatemachinePackage.eINSTANCE.getEvent_Code().equals(msg.getFeature()) && basePart != null && isAccessible(StatemachineViewsRepository.Event.Properties.code)) { if (msg.getNewValue() != null) { basePart.setCode(EcoreUtil.convertToString(EcorePackage.eINSTANCE.getEString(), msg.getNewValue())); } else { basePart.setCode(""); } } } } /** * {@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 (StatemachineViewsRepository.Event.Properties.name == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EcoreUtil.createFromString(StatemachinePackage.eINSTANCE.getEvent_Name().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(StatemachinePackage.eINSTANCE.getEvent_Name().getEAttributeType(), newValue); } if (StatemachineViewsRepository.Event.Properties.code == event.getAffectedEditor()) { Object newValue = event.getNewValue(); if (newValue instanceof String) { newValue = EcoreUtil.createFromString(StatemachinePackage.eINSTANCE.getEvent_Code().getEAttributeType(), (String)newValue); } ret = Diagnostician.INSTANCE.validate(StatemachinePackage.eINSTANCE.getEvent_Code().getEAttributeType(), newValue); } } catch (IllegalArgumentException iae) { ret = BasicDiagnostic.toDiagnostic(iae); } catch (WrappedException we) { ret = BasicDiagnostic.toDiagnostic(we); } } return ret; } }