Class EClass
-
- Direct Known Subclasses:
JavaClass,JavaDataType
public class EClass extends EClassifier
Java class for EClass complex type. The following schema fragment specifies the expected content contained within this class.<complexType name="EClass"> <complexContent> <extension base="{http://www.eclipse.org/emf/2002/Ecore}EClassifier"> <choice> <choice maxOccurs="unbounded" minOccurs="0"> <element name="eSuperTypes" type="{http://www.eclipse.org/emf/2002/Ecore}EClass"/> </choice> <choice maxOccurs="unbounded" minOccurs="0"> <element name="eOperations" type="{http://www.eclipse.org/emf/2002/Ecore}EOperation"/> </choice> <choice maxOccurs="unbounded" minOccurs="0"> <element name="eStructuralFeatures" type="{http://www.eclipse.org/emf/2002/Ecore}EStructuralFeature"/> </choice> </choice> <attribute name="abstract" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="eSuperTypes" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="interface" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EClass>eClassESuperTypesprotected List<EOperation>eOperationsprotected List<EStructuralFeature>eStructuralFeaturesprotected StringeSuperTypesprotected BooleanisAbstractprotected BooleanisInterface-
Fields inherited from class org.apache.openejb.jee.was.v6.ecore.EClassifier
instanceClassName
-
Fields inherited from class org.apache.openejb.jee.was.v6.ecore.ENamedElement
name
-
Fields inherited from class org.apache.openejb.jee.was.v6.ecore.EModelElement
eAnnotations
-
-
Constructor Summary
Constructors Constructor Description EClass()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EClass>getEClassESuperTypes()Gets the value of the eClassESuperTypes property.List<EOperation>getEOperations()Gets the value of the eOperations property.List<EStructuralFeature>getEStructuralFeatures()Gets the value of the eStructuralFeatures property.StringgetESuperTypes()Gets the value of the eSuperTypes property.BooleanisIsAbstract()Gets the value of the isAbstract property.BooleanisIsInterface()Gets the value of the isInterface property.voidsetESuperTypes(String value)Sets the value of the eSuperTypes property.voidsetIsAbstract(Boolean value)Sets the value of the isAbstract property.voidsetIsInterface(Boolean value)Sets the value of the isInterface property.-
Methods inherited from class org.apache.openejb.jee.was.v6.ecore.EClassifier
getInstanceClassName, setInstanceClassName
-
Methods inherited from class org.apache.openejb.jee.was.v6.ecore.ENamedElement
getName, setName
-
Methods inherited from class org.apache.openejb.jee.was.v6.ecore.EModelElement
getEAnnotations
-
-
-
-
Field Detail
-
eOperations
protected List<EOperation> eOperations
-
eStructuralFeatures
protected List<EStructuralFeature> eStructuralFeatures
-
isAbstract
protected Boolean isAbstract
-
eSuperTypes
protected String eSuperTypes
-
isInterface
protected Boolean isInterface
-
-
Method Detail
-
getEClassESuperTypes
public List<EClass> getEClassESuperTypes()
Gets the value of the eClassESuperTypes property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the eClassESuperTypes property. For example, to add a new item, do as follows:getEClassESuperTypes().add(newItem);
Objects of the following type(s) are allowed in the listEClass
-
getEOperations
public List<EOperation> getEOperations()
Gets the value of the eOperations property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the eOperations property. For example, to add a new item, do as follows:getEOperations().add(newItem);
Objects of the following type(s) are allowed in the listEOperation
-
getEStructuralFeatures
public List<EStructuralFeature> getEStructuralFeatures()
Gets the value of the eStructuralFeatures property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the eStructuralFeatures property. For example, to add a new item, do as follows:getEStructuralFeatures().add(newItem);
Objects of the following type(s) are allowed in the listEStructuralFeature
-
isIsAbstract
public Boolean isIsAbstract()
Gets the value of the isAbstract property.- Returns:
- possible object is
Boolean
-
setIsAbstract
public void setIsAbstract(Boolean value)
Sets the value of the isAbstract property.- Parameters:
value- allowed object isBoolean
-
getESuperTypes
public String getESuperTypes()
Gets the value of the eSuperTypes property.- Returns:
- possible object is
String
-
setESuperTypes
public void setESuperTypes(String value)
Sets the value of the eSuperTypes property.- Parameters:
value- allowed object isString
-
isIsInterface
public Boolean isIsInterface()
Gets the value of the isInterface property.- Returns:
- possible object is
Boolean
-
-