/** * * Copyright 2005 The Apache Software Foundation or its licensors, as applicable. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tuscany.sdo.impl; import java.util.Collections; import java.util.List; //import org.apache.tuscany.sdo.SDOPackage; import org.apache.tuscany.sdo.util.DataObjectUtil; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EcorePackage; import org.eclipse.emf.ecore.impl.EEnumImpl; import commonj.sdo.Property; import commonj.sdo.Type; /** * * An implementation of the model object 'Enum'. * *

*

* * @generated * @deprecated SDO doesn't support Enum types */ public class EnumImpl extends EEnumImpl implements Type { /** * * * @generated */ protected EnumImpl() { super(); } /** * * * @generated NOT */ protected EClass eStaticClass() { return EcorePackage.eINSTANCE.getEEnum(); } /** * * * @generated NOT */ public String getURI() { return getEPackage().getNsURI(); } /** * * * @generated NOT */ public boolean isDataType() { return true; } /** * * * @generated NOT */ public boolean isOpen() { return false; } /** * * * @generated NOT */ public boolean isSequenced() { return false; } protected List aliasNames = null; /** * * * @generated NOT */ public List getAliasNames() { if (aliasNames == null) { aliasNames = DataObjectUtil.getAliasNames(this); } return aliasNames; } /** * * * @generated NOT */ public List getDeclaredProperties() { return Collections.EMPTY_LIST; } /** * * * @generated NOT */ public List getProperties() { return Collections.EMPTY_LIST; } /** * * * @generated NOT */ public List getBaseTypes() { return Collections.EMPTY_LIST; } /** * * * @generated NOT */ public Property getProperty(String propertyName) { return null; } /** * * * @generated NOT */ public boolean isAbstract() { return false; } } //EnumTypeImpl