blob: 88e92fb8b7855033253da5999dcd1de5a63ab80f [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial implementation
*
*/
package org.eclipse.epf.diagramming.providers;
import java.text.FieldPosition;
import java.text.MessageFormat;
import java.util.Collections;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.emf.transaction.util.TransactionUtil;
import org.eclipse.epf.diagramming.part.EPFDiagramEditorPlugin;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.common.core.command.UnexecutableCommand;
import org.eclipse.gmf.runtime.common.ui.services.parser.IParserEditStatus;
import org.eclipse.gmf.runtime.common.ui.services.parser.ParserEditStatus;
import org.eclipse.gmf.runtime.emf.commands.core.command.CompositeTransactionalCommand;
/**
* @generated
*/
public class UMLStructuralFeatureParser extends UMLAbstractParser {
/**
* @generated
*/
private static final MessageFormat DEFAULT_PROCESSOR = new MessageFormat(
"{0}"); //$NON-NLS-1$
/**
* @generated
*/
private EStructuralFeature feature;
/**
* @generated
*/
public UMLStructuralFeatureParser(EStructuralFeature feature) {
this.feature = feature;
}
/**
* @generated
*/
protected MessageFormat getViewProcessor() {
MessageFormat processor = super.getViewProcessor();
return processor == null ? DEFAULT_PROCESSOR : processor;
}
/**
* @generated
*/
protected MessageFormat getEditProcessor() {
MessageFormat processor = super.getEditProcessor();
return processor == null ? DEFAULT_PROCESSOR : processor;
}
/**
* @generated
*/
protected String getStringByPattern(IAdaptable adapter, int flags,
String pattern, MessageFormat processor) {
EObject element = (EObject) adapter.getAdapter(EObject.class);
Object value = element.eGet(feature);
value = getValidValue(feature, value);
return processor.format(new Object[] { value }, new StringBuffer(),
new FieldPosition(0)).toString();
}
/**
* @generated
*/
protected IParserEditStatus validateValues(Object[] values) {
if (values.length > 1) {
return ParserEditStatus.UNEDITABLE_STATUS;
}
Object value = values.length == 1 ? values[0] : null;
value = getValidNewValue(feature, value);
if (value instanceof InvalidValue) {
return new ParserEditStatus(EPFDiagramEditorPlugin.ID,
IParserEditStatus.UNEDITABLE, value.toString());
}
return ParserEditStatus.EDITABLE_STATUS;
}
/**
* @modified
*/
public ICommand getParseCommand(IAdaptable adapter, Object[] values) {
EObject element = (EObject) adapter.getAdapter(EObject.class);
if (element == null) {
return UnexecutableCommand.INSTANCE;
}
TransactionalEditingDomain editingDomain = TransactionUtil
.getEditingDomain(element);
if (editingDomain == null) {
return UnexecutableCommand.INSTANCE;
}
Object value = values.length == 1 ? values[0] : null;
ICommand command = getModificationCommand(element, feature, value);
// Collection<ICommand> col = new ArrayList<ICommand>();
// col.add(command);
// ICommand command1 = getUmaCommand(adapter, value);
//TODO: Change to Command. for undo action.
// View view = (View)((View)adapter.getAdapter(View.class)).eContainer();
// EAnnotation eAnnotation = view.getEAnnotation(Constants.UMA_SOURCE);
// if(eAnnotation != null){
// String guid = (String)eAnnotation.getDetails().get(Constants.UMA_ELEMENT_GUID);
// ILibraryManager manager = LibraryService.getInstance().getCurrentLibraryManager();
// MethodElement me = manager.getMethodElement(guid);
// me.setName((String)value);
// if(me instanceof DescribableElement){
// ((DescribableElement)me).setPresentationName((String)value);
// }
// }
return new CompositeTransactionalCommand(editingDomain, command
.getLabel(), Collections.singletonList(command));
}
/**
* @generated
*/
public boolean isAffectingEvent(Object event, int flags) {
if (event instanceof Notification) {
if (feature == ((Notification) event).getFeature()) {
return true;
}
}
return false;
}
}