blob: 8ada376413118e2af65e82dc3caa5f7e73832fe5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
* Generated with Acceleo
*/
package org.eclipse.opencert.pam.procspec.process.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.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 org.eclipse.opencert.infra.general.general.GeneralPackage;
import org.eclipse.opencert.pam.procspec.process.Activity;
import org.eclipse.opencert.pam.procspec.process.ActivityRel;
import org.eclipse.opencert.pam.procspec.process.ProcessPackage;
import org.eclipse.opencert.pam.procspec.process.parts.ActivityPropertiesEditionPart;
import org.eclipse.opencert.pam.procspec.process.parts.ProcessViewsRepository;
// End of user code
/**
*
*
*/
public class ActivityBasePropertiesEditionComponent extends SinglePartPropertiesEditingComponent {
public static String BASE_PART = "Base"; //$NON-NLS-1$
/**
* Settings for subActivity ReferencesTable
*/
protected ReferencesTableSettings subActivitySettings;
/**
* Settings for precedingActivity ReferencesTable
*/
private ReferencesTableSettings precedingActivitySettings;
/**
* Settings for ownedRel ReferencesTable
*/
protected ReferencesTableSettings ownedRelSettings;
/**
* Default constructor
*
*/
public ActivityBasePropertiesEditionComponent(PropertiesEditingContext editingContext, EObject activity, String editing_mode) {
super(editingContext, activity, editing_mode);
parts = new String[] { BASE_PART };
repositoryKey = ProcessViewsRepository.class;
partKey = ProcessViewsRepository.Activity.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 Activity activity = (Activity)elt;
final ActivityPropertiesEditionPart basePart = (ActivityPropertiesEditionPart)editingPart;
// init values
if (isAccessible(ProcessViewsRepository.Activity.Properties.id))
basePart.setId(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, activity.getId()));
if (isAccessible(ProcessViewsRepository.Activity.Properties.name))
basePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, activity.getName()));
if (isAccessible(ProcessViewsRepository.Activity.Properties.description))
basePart.setDescription(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, activity.getDescription()));
if (isAccessible(ProcessViewsRepository.Activity.Properties.startTime))
basePart.setStartTime(EEFConverterUtil.convertToString(EcorePackage.Literals.EDATE, activity.getStartTime()));
if (isAccessible(ProcessViewsRepository.Activity.Properties.endTime))
basePart.setEndTime(EEFConverterUtil.convertToString(EcorePackage.Literals.EDATE, activity.getEndTime()));
if (isAccessible(ProcessViewsRepository.Activity.Properties.subActivity)) {
subActivitySettings = new ReferencesTableSettings(activity, ProcessPackage.eINSTANCE.getActivity_SubActivity());
basePart.initSubActivity(subActivitySettings);
}
if (isAccessible(ProcessViewsRepository.Activity.Properties.precedingActivity)) {
precedingActivitySettings = new ReferencesTableSettings(activity, ProcessPackage.eINSTANCE.getActivity_PrecedingActivity());
basePart.initPrecedingActivity(precedingActivitySettings);
}
if (isAccessible(ProcessViewsRepository.Activity.Properties.ownedRel)) {
ownedRelSettings = new ReferencesTableSettings(activity, ProcessPackage.eINSTANCE.getActivity_OwnedRel());
basePart.initOwnedRel(ownedRelSettings);
}
// init filters
if (isAccessible(ProcessViewsRepository.Activity.Properties.subActivity)) {
basePart.addFilterToSubActivity(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 Activity); //$NON-NLS-1$
}
});
// Start of user code for additional businessfilters for subActivity
// End of user code
}
if (isAccessible(ProcessViewsRepository.Activity.Properties.precedingActivity)) {
basePart.addFilterToPrecedingActivity(new EObjectFilter(ProcessPackage.Literals.ACTIVITY));
// Start of user code for additional businessfilters for precedingActivity
// End of user code
}
if (isAccessible(ProcessViewsRepository.Activity.Properties.ownedRel)) {
basePart.addFilterToOwnedRel(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 ActivityRel); //$NON-NLS-1$
}
});
// Start of user code for additional businessfilters for ownedRel
// 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 == ProcessViewsRepository.Activity.Properties.id) {
return GeneralPackage.eINSTANCE.getNamedElement_Id();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.name) {
return GeneralPackage.eINSTANCE.getNamedElement_Name();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.description) {
return GeneralPackage.eINSTANCE.getDescribableElement_Description();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.startTime) {
return ProcessPackage.eINSTANCE.getActivity_StartTime();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.endTime) {
return ProcessPackage.eINSTANCE.getActivity_EndTime();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.subActivity) {
return ProcessPackage.eINSTANCE.getActivity_SubActivity();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.precedingActivity) {
return ProcessPackage.eINSTANCE.getActivity_PrecedingActivity();
}
if (editorKey == ProcessViewsRepository.Activity.Properties.ownedRel) {
return ProcessPackage.eINSTANCE.getActivity_OwnedRel();
}
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) {
Activity activity = (Activity)semanticObject;
if (ProcessViewsRepository.Activity.Properties.id == event.getAffectedEditor()) {
activity.setId((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue()));
}
if (ProcessViewsRepository.Activity.Properties.name == event.getAffectedEditor()) {
activity.setName((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue()));
}
if (ProcessViewsRepository.Activity.Properties.description == event.getAffectedEditor()) {
activity.setDescription((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue()));
}
if (ProcessViewsRepository.Activity.Properties.startTime == event.getAffectedEditor()) {
activity.setStartTime((java.util.Date)EEFConverterUtil.createFromString(EcorePackage.Literals.EDATE, (String)event.getNewValue()));
}
if (ProcessViewsRepository.Activity.Properties.endTime == event.getAffectedEditor()) {
activity.setEndTime((java.util.Date)EEFConverterUtil.createFromString(EcorePackage.Literals.EDATE, (String)event.getNewValue()));
}
if (ProcessViewsRepository.Activity.Properties.subActivity == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, subActivitySettings, 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) {
subActivitySettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
subActivitySettings.move(event.getNewIndex(), (Activity) event.getNewValue());
}
}
if (ProcessViewsRepository.Activity.Properties.precedingActivity == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
if (event.getNewValue() instanceof Activity) {
precedingActivitySettings.addToReference((EObject) event.getNewValue());
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
precedingActivitySettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
precedingActivitySettings.move(event.getNewIndex(), (Activity) event.getNewValue());
}
}
if (ProcessViewsRepository.Activity.Properties.ownedRel == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
EReferencePropertiesEditionContext context = new EReferencePropertiesEditionContext(editingContext, this, ownedRelSettings, 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) {
ownedRelSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
ownedRelSettings.move(event.getNewIndex(), (ActivityRel) 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()) {
ActivityPropertiesEditionPart basePart = (ActivityPropertiesEditionPart)editingPart;
if (GeneralPackage.eINSTANCE.getNamedElement_Id().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(ProcessViewsRepository.Activity.Properties.id)) {
if (msg.getNewValue() != null) {
basePart.setId(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue()));
} else {
basePart.setId("");
}
}
if (GeneralPackage.eINSTANCE.getNamedElement_Name().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(ProcessViewsRepository.Activity.Properties.name)) {
if (msg.getNewValue() != null) {
basePart.setName(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue()));
} else {
basePart.setName("");
}
}
if (GeneralPackage.eINSTANCE.getDescribableElement_Description().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(ProcessViewsRepository.Activity.Properties.description)) {
if (msg.getNewValue() != null) {
basePart.setDescription(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue()));
} else {
basePart.setDescription("");
}
}
if (ProcessPackage.eINSTANCE.getActivity_StartTime().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(ProcessViewsRepository.Activity.Properties.startTime)) {
if (msg.getNewValue() != null) {
basePart.setStartTime(EcoreUtil.convertToString(EcorePackage.Literals.EDATE, msg.getNewValue()));
} else {
basePart.setStartTime("");
}
}
if (ProcessPackage.eINSTANCE.getActivity_EndTime().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(ProcessViewsRepository.Activity.Properties.endTime)) {
if (msg.getNewValue() != null) {
basePart.setEndTime(EcoreUtil.convertToString(EcorePackage.Literals.EDATE, msg.getNewValue()));
} else {
basePart.setEndTime("");
}
}
if (ProcessPackage.eINSTANCE.getActivity_SubActivity().equals(msg.getFeature()) && isAccessible(ProcessViewsRepository.Activity.Properties.subActivity))
basePart.updateSubActivity();
if (ProcessPackage.eINSTANCE.getActivity_PrecedingActivity().equals(msg.getFeature()) && isAccessible(ProcessViewsRepository.Activity.Properties.precedingActivity))
basePart.updatePrecedingActivity();
if (ProcessPackage.eINSTANCE.getActivity_OwnedRel().equals(msg.getFeature()) && isAccessible(ProcessViewsRepository.Activity.Properties.ownedRel))
basePart.updateOwnedRel();
}
}
/**
* {@inheritDoc}
*
* @see org.eclipse.emf.eef.runtime.impl.components.StandardPropertiesEditionComponent#getNotificationFilters()
*/
@Override
protected NotificationFilter[] getNotificationFilters() {
NotificationFilter filter = new EStructuralFeatureNotificationFilter(
GeneralPackage.eINSTANCE.getNamedElement_Id(),
GeneralPackage.eINSTANCE.getNamedElement_Name(),
GeneralPackage.eINSTANCE.getDescribableElement_Description(),
ProcessPackage.eINSTANCE.getActivity_StartTime(),
ProcessPackage.eINSTANCE.getActivity_EndTime(),
ProcessPackage.eINSTANCE.getActivity_SubActivity(),
ProcessPackage.eINSTANCE.getActivity_PrecedingActivity(),
ProcessPackage.eINSTANCE.getActivity_OwnedRel() );
return new NotificationFilter[] {filter,};
}
/**
* {@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 (ProcessViewsRepository.Activity.Properties.id == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(GeneralPackage.eINSTANCE.getNamedElement_Id().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(GeneralPackage.eINSTANCE.getNamedElement_Id().getEAttributeType(), newValue);
}
if (ProcessViewsRepository.Activity.Properties.name == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(GeneralPackage.eINSTANCE.getNamedElement_Name().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(GeneralPackage.eINSTANCE.getNamedElement_Name().getEAttributeType(), newValue);
}
if (ProcessViewsRepository.Activity.Properties.description == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(GeneralPackage.eINSTANCE.getDescribableElement_Description().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(GeneralPackage.eINSTANCE.getDescribableElement_Description().getEAttributeType(), newValue);
}
if (ProcessViewsRepository.Activity.Properties.startTime == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(ProcessPackage.eINSTANCE.getActivity_StartTime().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(ProcessPackage.eINSTANCE.getActivity_StartTime().getEAttributeType(), newValue);
}
if (ProcessViewsRepository.Activity.Properties.endTime == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(ProcessPackage.eINSTANCE.getActivity_EndTime().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(ProcessPackage.eINSTANCE.getActivity_EndTime().getEAttributeType(), newValue);
}
} catch (IllegalArgumentException iae) {
ret = BasicDiagnostic.toDiagnostic(iae);
} catch (WrappedException we) {
ret = BasicDiagnostic.toDiagnostic(we);
}
}
return ret;
}
}