blob: 28d0657c988ef09d1a8f3a8dfe479cc19b3faffd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2017 The University of York, Aston University.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License, v. 2.0 are satisfied: GNU General Public License, version 3.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-3.0
*
* Contributors:
* Konstantinos Barmpis - initial API and implementation
* Antonio Garcia-Dominguez - cleanup and use covariant return types
******************************************************************************/
package org.eclipse.hawk.emf;
import org.eclipse.emf.ecore.EDataType;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.hawk.core.model.IHawkDataType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class EMFDataType extends EMFModelElement implements IHawkDataType {
private static final Logger LOGGER = LoggerFactory.getLogger(EMFDataType.class);
private EDataType eDataType;
public EMFDataType(EDataType eDataType, EMFWrapperFactory wf) {
super(eDataType, wf);
this.eDataType = ((EDataType) eDataType);
}
public EDataType getEObject() {
return eDataType;
}
@Override
public String getName() {
return eDataType.getName();
}
@Override
public String getInstanceType() {
String it = eDataType.getInstanceClassName();
it = it == null ? "NULL_INSTANCE_TYPE" : it;
switch (it) {
case "long":
return Long.class.getName();
case "int":
return Integer.class.getName();
case "float":
return Float.class.getName();
case "double":
return Double.class.getName();
case "boolean":
return Boolean.class.getName();
}
return it;
}
@Override
public String getPackageNSURI() {
final EPackage ePackage = eDataType.getEPackage();
if (ePackage == null) {
LOGGER.warn("Data type {} is not associated with an EPackage: returning null", eDataType);
return null;
} else {
return ePackage.getNsURI();
}
}
@Override
public int hashCode() {
return eDataType.hashCode();
}
}