blob: 4267480174379d997f5317e86d181f42ed519c65 [file] [log] [blame]
/*
* Copyright (c) 2007 IBM Corporation, Embarcadero Technologies, 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:
* Kenn Hussey (IBM Corporation, Embarcadero Technologies) - initial API and implementation
*
* $Id: CMOF2UMLHandler.java,v 1.1 2007/09/04 15:28:48 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.resource;
import java.util.Map;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.xmi.XMIResource;
import org.eclipse.emf.ecore.xmi.XMLHelper;
import org.eclipse.emf.ecore.xmi.XMLResource;
import org.eclipse.emf.ecore.xmi.impl.EMOFExtendedMetaData;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.resource.XMI2UMLResource;
public class CMOF2UMLHandler
extends XMI2UMLHandler {
protected static final String UML_EXTENSION_TYPE = "umlExtension"; //$NON-NLS-1$
protected static final String XMI_IDREF = "idref"; //$NON-NLS-1$
protected static final String IDREF_ATTRIB = XMIResource.XMI_NS + ':'
+ XMI_IDREF;
public CMOF2UMLHandler(XMLResource xmiResource, XMLHelper helper,
Map<?, ?> options) {
super(xmiResource, helper, options);
}
@Override
protected void processElement(String name, String prefix, String localName) {
if (EMOFExtendedMetaData.EXTENSION.equals(localName)
&& XMI2UMLResource.XMI_NS_URI.equals(helper.getURI(prefix))
&& attribs != null
&& UMLPackage.eNS_URI.equals(attribs
.getValue(EMOFExtendedMetaData.XMI_EXTENDER_ATTRIBUTE))) {
types.push(UML_EXTENSION_TYPE);
} else {
super.processElement(name, prefix, localName);
}
}
@Override
public void endElement(String uri, String localName, String name) {
if (types.peek() == UML_EXTENSION_TYPE) {
elements.pop();
types.pop();
helper.popContext();
mixedTargets.pop();
} else {
super.endElement(uri, localName, name);
}
}
@Override
protected void setAttribValue(EObject object, String name, String value) {
if (IDREF_ATTRIB.equals(name)
&& (!recordUnknownFeature || types.peek() != UNKNOWN_FEATURE_TYPE)) {
handleProxy((InternalEObject) object, '#' + value);
} else {
super.setAttribValue(object, name, value);
}
}
}