blob: 973a065f54cf663f072dccb15eec8afc2019d201 [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.pkm.refframework.refframework.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.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.providers.PropertiesEditingProvider;
import org.eclipse.emf.eef.runtime.ui.widgets.ButtonsModeEnum;
import org.eclipse.emf.eef.runtime.ui.widgets.eobjflatcombo.EObjectFlatComboSettings;
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.infra.mappings.mapping.MapGroup;
import org.eclipse.opencert.infra.mappings.mapping.MapJustification;
import org.eclipse.opencert.infra.mappings.mapping.MapKind;
import org.eclipse.opencert.infra.mappings.mapping.MappingFactory;
import org.eclipse.opencert.infra.mappings.mapping.MappingPackage;
import org.eclipse.opencert.pkm.refframework.refframework.RefAssurableElement;
import org.eclipse.opencert.pkm.refframework.refframework.RefEquivalenceMap;
import org.eclipse.opencert.pkm.refframework.refframework.RefframeworkPackage;
import org.eclipse.opencert.pkm.refframework.refframework.parts.RefEquivalenceMapPropertiesEditionPart;
import org.eclipse.opencert.pkm.refframework.refframework.parts.RefframeworkViewsRepository;
// End of user code
/**
*
*
*/
public class RefEquivalenceMapPropertiesEditionComponent extends SinglePartPropertiesEditingComponent {
public static String BASE_PART = "Base"; //$NON-NLS-1$
/**
* Settings for mapGroup EObjectFlatComboViewer
*/
private EObjectFlatComboSettings mapGroupSettings;
/**
* Settings for target ReferencesTable
*/
private ReferencesTableSettings targetSettings;
/**
* Default constructor
*
*/
public RefEquivalenceMapPropertiesEditionComponent(PropertiesEditingContext editingContext, EObject refEquivalenceMap, String editing_mode) {
super(editingContext, refEquivalenceMap, editing_mode);
parts = new String[] { BASE_PART };
repositoryKey = RefframeworkViewsRepository.class;
partKey = RefframeworkViewsRepository.RefEquivalenceMap.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 RefEquivalenceMap refEquivalenceMap = (RefEquivalenceMap)elt;
final RefEquivalenceMapPropertiesEditionPart basePart = (RefEquivalenceMapPropertiesEditionPart)editingPart;
// init values
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.id))
basePart.setId(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, refEquivalenceMap.getId()));
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.name))
basePart.setName(EEFConverterUtil.convertToString(EcorePackage.Literals.ESTRING, refEquivalenceMap.getName()));
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroup)) {
// init part
mapGroupSettings = new EObjectFlatComboSettings(refEquivalenceMap, MappingPackage.eINSTANCE.getMap_MapGroup());
basePart.initMapGroup(mapGroupSettings);
// set the button mode
basePart.setMapGroupButtonMode(ButtonsModeEnum.BROWSE);
}
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroupCombo)) {
basePart.initMapGroupCombo(EEFUtils.choiceOfValues(refEquivalenceMap, MappingPackage.eINSTANCE.getMap_MapGroup()), refEquivalenceMap.getMapGroup());
}
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.type)) {
basePart.initType(EEFUtils.choiceOfValues(refEquivalenceMap, MappingPackage.eINSTANCE.getMap_Type()), refEquivalenceMap.getType());
}
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.target)) {
targetSettings = new ReferencesTableSettings(refEquivalenceMap, RefframeworkPackage.eINSTANCE.getRefEquivalenceMap_Target());
basePart.initTarget(targetSettings);
}
// FIXME NO VALID CASE INTO template public updater(editionElement : PropertiesEditionElement, view : View, pec : PropertiesEditionComponent) in widgetControl.mtl module, with the values : justification, RefEquivalenceMap, RefEquivalenceMap.
// Start IRR
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.justification)) {
MapJustification mapJustification = MappingFactory.eINSTANCE.createMapJustification();
mapJustification = refEquivalenceMap.getMapJustification();
if (mapJustification != null)
basePart.setJustification(mapJustification.getExplanation());
}
// End IRR
// init filters
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroup)) {
basePart.addFilterToMapGroup(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 MapGroup); //$NON-NLS-1$
}
});
// Start of user code for additional businessfilters for mapGroup
// End of user code
}
// Start of user code for additional businessfilters for mapGroupCombo
// End of user code
if (isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.target)) {
basePart.addFilterToTarget(new EObjectFilter(RefframeworkPackage.Literals.REF_ASSURABLE_ELEMENT));
// Start of user code for additional businessfilters for target
// End of user code
}
// FIXME NO VALID CASE INTO template public filterUpdater(editionElement : PropertiesEditionElement, view : View, pec : PropertiesEditionComponent) in widgetControl.mtl module, with the values : justification, RefEquivalenceMap, RefEquivalenceMap.
// 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 == RefframeworkViewsRepository.RefEquivalenceMap.Properties.id) {
return GeneralPackage.eINSTANCE.getNamedElement_Id();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.name) {
return GeneralPackage.eINSTANCE.getNamedElement_Name();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroup) {
return MappingPackage.eINSTANCE.getMap_MapGroup();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroupCombo) {
return MappingPackage.eINSTANCE.getMap_MapGroup();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.type) {
return MappingPackage.eINSTANCE.getMap_Type();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.target) {
return RefframeworkPackage.eINSTANCE.getRefEquivalenceMap_Target();
}
if (editorKey == RefframeworkViewsRepository.RefEquivalenceMap.Properties.justification) {
return MappingPackage.eINSTANCE.getMap_MapJustification();
}
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) {
RefEquivalenceMap refEquivalenceMap = (RefEquivalenceMap)semanticObject;
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.id == event.getAffectedEditor()) {
refEquivalenceMap.setId((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue()));
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.name == event.getAffectedEditor()) {
refEquivalenceMap.setName((java.lang.String)EEFConverterUtil.createFromString(EcorePackage.Literals.ESTRING, (String)event.getNewValue()));
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroup == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.SET) {
mapGroupSettings.setToReference((MapGroup)event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.ADD) {
MapGroup eObject = MappingFactory.eINSTANCE.createMapGroup();
EObjectPropertiesEditionContext context = new EObjectPropertiesEditionContext(editingContext, this, eObject, editingContext.getAdapterFactory());
PropertiesEditingProvider provider = (PropertiesEditingProvider)editingContext.getAdapterFactory().adapt(eObject, PropertiesEditingProvider.class);
if (provider != null) {
PropertiesEditingPolicy policy = provider.getPolicy(context);
if (policy != null) {
policy.execute();
}
}
mapGroupSettings.setToReference(eObject);
}
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroupCombo == event.getAffectedEditor()) {
refEquivalenceMap.setMapGroup(!"".equals(event.getNewValue()) ? (MapGroup) event.getNewValue() : null);
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.type == event.getAffectedEditor()) {
refEquivalenceMap.setType((MapKind)event.getNewValue());
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.target == event.getAffectedEditor()) {
if (event.getKind() == PropertiesEditionEvent.ADD) {
if (event.getNewValue() instanceof RefAssurableElement) {
targetSettings.addToReference((EObject) event.getNewValue());
}
} else if (event.getKind() == PropertiesEditionEvent.REMOVE) {
targetSettings.removeFromReference((EObject) event.getNewValue());
} else if (event.getKind() == PropertiesEditionEvent.MOVE) {
targetSettings.move(event.getNewIndex(), (RefAssurableElement) event.getNewValue());
}
}
if (RefframeworkViewsRepository.RefEquivalenceMap.Properties.justification == event.getAffectedEditor()) {
// Start IRR
// FIXME INVALID CASE you must override the template
// 'declareEObjectUpdater' for the case : justification,
// RefEquivalenceMap, RefEquivalenceMap.
MapJustification mapJustification = MappingFactory.eINSTANCE
.createMapJustification();
mapJustification.setExplanation((java.lang.String) EEFConverterUtil
.createFromString(EcorePackage.Literals.ESTRING,
(String) event.getNewValue()));
refEquivalenceMap.setMapJustification(mapJustification);
// End IRR
}
}
/**
* {@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()) {
RefEquivalenceMapPropertiesEditionPart basePart = (RefEquivalenceMapPropertiesEditionPart)editingPart;
if (GeneralPackage.eINSTANCE.getNamedElement_Id().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.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(RefframeworkViewsRepository.RefEquivalenceMap.Properties.name)) {
if (msg.getNewValue() != null) {
basePart.setName(EcoreUtil.convertToString(EcorePackage.Literals.ESTRING, msg.getNewValue()));
} else {
basePart.setName("");
}
}
if (MappingPackage.eINSTANCE.getMap_MapGroup().equals(msg.getFeature()) && basePart != null && isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroup))
basePart.setMapGroup((EObject)msg.getNewValue());
if (MappingPackage.eINSTANCE.getMap_MapGroup().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && basePart != null && isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.mapGroupCombo))
basePart.setMapGroupCombo((Object)msg.getNewValue());
if (MappingPackage.eINSTANCE.getMap_Type().equals(msg.getFeature()) && msg.getNotifier().equals(semanticObject) && isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.type))
basePart.setType((MapKind)msg.getNewValue());
if (RefframeworkPackage.eINSTANCE.getRefEquivalenceMap_Target().equals(msg.getFeature()) && isAccessible(RefframeworkViewsRepository.RefEquivalenceMap.Properties.target))
basePart.updateTarget();
// FIXME INVALID CASE INTO template public liveUpdater(editionElement : PropertiesEditionElement, view : View, pec : PropertiesEditionComponent) in widgetControl.mtl module, with the values : justification, RefEquivalenceMap, RefEquivalenceMap.
}
}
/**
* {@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(),
MappingPackage.eINSTANCE.getMap_MapGroup(),
MappingPackage.eINSTANCE.getMap_MapGroup(),
MappingPackage.eINSTANCE.getMap_Type(),
RefframeworkPackage.eINSTANCE.getRefEquivalenceMap_Target(),
MappingPackage.eINSTANCE.getMap_MapJustification() );
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 (RefframeworkViewsRepository.RefEquivalenceMap.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 (RefframeworkViewsRepository.RefEquivalenceMap.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 (RefframeworkViewsRepository.RefEquivalenceMap.Properties.type == event.getAffectedEditor()) {
Object newValue = event.getNewValue();
if (newValue instanceof String) {
newValue = EEFConverterUtil.createFromString(MappingPackage.eINSTANCE.getMap_Type().getEAttributeType(), (String)newValue);
}
ret = Diagnostician.INSTANCE.validate(MappingPackage.eINSTANCE.getMap_Type().getEAttributeType(), newValue);
}
} catch (IllegalArgumentException iae) {
ret = BasicDiagnostic.toDiagnostic(iae);
} catch (WrappedException we) {
ret = BasicDiagnostic.toDiagnostic(we);
}
}
return ret;
}
}