org.omg.uml.Classifier Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.09.13 at 12:06:48 PM EST
//
package org.omg.uml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Classifier complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Classifier">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ownedElement" type="{}Element" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ownedComment" type="{}Comment" maxOccurs="unbounded" minOccurs="0"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="qualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="visibility" type="{}VisibilityKind" minOccurs="0"/>
* <element name="isLeaf" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="redefinitionContext" type="{}Classifier" maxOccurs="unbounded" minOccurs="0"/>
* <element name="redefinedElement" type="{}RedefinableElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="packageImport" type="{}PackageImport" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ownedRule" type="{}Constraint" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ownedMember" type="{}NamedElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="member" type="{}NamedElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="importedMember" type="{}PackageableElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="elementImport" type="{}ElementImport" maxOccurs="unbounded" minOccurs="0"/>
* <element name="isAbstract" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="isFinalSpecialization" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="redefinedClassifier" type="{}Classifier" maxOccurs="unbounded" minOccurs="0"/>
* <element name="inheritedMember" type="{}NamedElement" maxOccurs="unbounded" minOccurs="0"/>
* <element name="generalization" type="{}Generalization" maxOccurs="unbounded" minOccurs="0"/>
* <element name="general" type="{}Classifier" maxOccurs="unbounded" minOccurs="0"/>
* <element name="feature" type="{}Feature" maxOccurs="unbounded" minOccurs="0"/>
* <element name="attribute" type="{}Property" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Classifier", propOrder = {
"ownedElement",
"ownedComment",
"name",
"qualifiedName",
"visibility",
"isLeaf",
"redefinitionContext",
"redefinedElement",
"packageImport",
"ownedRule",
"ownedMember",
"member",
"importedMember",
"elementImport",
"isAbstract",
"isFinalSpecialization",
"redefinedClassifier",
"inheritedMember",
"generalization",
"general",
"feature",
"attribute"
})
@XmlSeeAlso({
BehavioredClassifier.class,
Signal.class,
Interface.class,
DataType.class,
Class.class
})
public abstract class Classifier {
protected List ownedElement;
protected List ownedComment;
protected String name;
protected String qualifiedName;
protected VisibilityKind visibility;
@XmlElement(required = true)
protected String isLeaf;
protected List redefinitionContext;
protected List redefinedElement;
protected List packageImport;
protected List ownedRule;
protected List ownedMember;
protected List member;
protected List importedMember;
protected List elementImport;
@XmlElement(required = true)
protected String isAbstract;
@XmlElement(required = true)
protected String isFinalSpecialization;
protected List redefinedClassifier;
protected List inheritedMember;
protected List generalization;
protected List general;
protected List feature;
protected List attribute;
/**
* Gets the value of the ownedElement 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 a set
method for the ownedElement property.
*
*
* For example, to add a new item, do as follows:
*
* getOwnedElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Element }
*
*
*/
public List getOwnedElement() {
if (ownedElement == null) {
ownedElement = new ArrayList();
}
return this.ownedElement;
}
/**
* Gets the value of the ownedComment 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 a set
method for the ownedComment property.
*
*
* For example, to add a new item, do as follows:
*
* getOwnedComment().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Comment }
*
*
*/
public List getOwnedComment() {
if (ownedComment == null) {
ownedComment = new ArrayList();
}
return this.ownedComment;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the qualifiedName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getQualifiedName() {
return qualifiedName;
}
/**
* Sets the value of the qualifiedName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setQualifiedName(String value) {
this.qualifiedName = value;
}
/**
* Gets the value of the visibility property.
*
* @return
* possible object is
* {@link VisibilityKind }
*
*/
public VisibilityKind getVisibility() {
return visibility;
}
/**
* Sets the value of the visibility property.
*
* @param value
* allowed object is
* {@link VisibilityKind }
*
*/
public void setVisibility(VisibilityKind value) {
this.visibility = value;
}
/**
* Gets the value of the isLeaf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsLeaf() {
return isLeaf;
}
/**
* Sets the value of the isLeaf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsLeaf(String value) {
this.isLeaf = value;
}
/**
* Gets the value of the redefinitionContext 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 a set
method for the redefinitionContext property.
*
*
* For example, to add a new item, do as follows:
*
* getRedefinitionContext().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Classifier }
*
*
*/
public List getRedefinitionContext() {
if (redefinitionContext == null) {
redefinitionContext = new ArrayList();
}
return this.redefinitionContext;
}
/**
* Gets the value of the redefinedElement 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 a set
method for the redefinedElement property.
*
*
* For example, to add a new item, do as follows:
*
* getRedefinedElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RedefinableElement }
*
*
*/
public List getRedefinedElement() {
if (redefinedElement == null) {
redefinedElement = new ArrayList();
}
return this.redefinedElement;
}
/**
* Gets the value of the packageImport 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 a set
method for the packageImport property.
*
*
* For example, to add a new item, do as follows:
*
* getPackageImport().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PackageImport }
*
*
*/
public List getPackageImport() {
if (packageImport == null) {
packageImport = new ArrayList();
}
return this.packageImport;
}
/**
* Gets the value of the ownedRule 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 a set
method for the ownedRule property.
*
*
* For example, to add a new item, do as follows:
*
* getOwnedRule().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Constraint }
*
*
*/
public List getOwnedRule() {
if (ownedRule == null) {
ownedRule = new ArrayList();
}
return this.ownedRule;
}
/**
* Gets the value of the ownedMember 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 a set
method for the ownedMember property.
*
*
* For example, to add a new item, do as follows:
*
* getOwnedMember().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NamedElement }
*
*
*/
public List getOwnedMember() {
if (ownedMember == null) {
ownedMember = new ArrayList();
}
return this.ownedMember;
}
/**
* Gets the value of the member 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 a set
method for the member property.
*
*
* For example, to add a new item, do as follows:
*
* getMember().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NamedElement }
*
*
*/
public List getMember() {
if (member == null) {
member = new ArrayList();
}
return this.member;
}
/**
* Gets the value of the importedMember 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 a set
method for the importedMember property.
*
*
* For example, to add a new item, do as follows:
*
* getImportedMember().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PackageableElement }
*
*
*/
public List getImportedMember() {
if (importedMember == null) {
importedMember = new ArrayList();
}
return this.importedMember;
}
/**
* Gets the value of the elementImport 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 a set
method for the elementImport property.
*
*
* For example, to add a new item, do as follows:
*
* getElementImport().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ElementImport }
*
*
*/
public List getElementImport() {
if (elementImport == null) {
elementImport = new ArrayList();
}
return this.elementImport;
}
/**
* Gets the value of the isAbstract property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsAbstract() {
return isAbstract;
}
/**
* Sets the value of the isAbstract property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsAbstract(String value) {
this.isAbstract = value;
}
/**
* Gets the value of the isFinalSpecialization property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsFinalSpecialization() {
return isFinalSpecialization;
}
/**
* Sets the value of the isFinalSpecialization property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsFinalSpecialization(String value) {
this.isFinalSpecialization = value;
}
/**
* Gets the value of the redefinedClassifier 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 a set
method for the redefinedClassifier property.
*
*
* For example, to add a new item, do as follows:
*
* getRedefinedClassifier().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Classifier }
*
*
*/
public List getRedefinedClassifier() {
if (redefinedClassifier == null) {
redefinedClassifier = new ArrayList();
}
return this.redefinedClassifier;
}
/**
* Gets the value of the inheritedMember 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 a set
method for the inheritedMember property.
*
*
* For example, to add a new item, do as follows:
*
* getInheritedMember().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NamedElement }
*
*
*/
public List getInheritedMember() {
if (inheritedMember == null) {
inheritedMember = new ArrayList();
}
return this.inheritedMember;
}
/**
* Gets the value of the generalization 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 a set
method for the generalization property.
*
*
* For example, to add a new item, do as follows:
*
* getGeneralization().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Generalization }
*
*
*/
public List getGeneralization() {
if (generalization == null) {
generalization = new ArrayList();
}
return this.generalization;
}
/**
* Gets the value of the general 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 a set
method for the general property.
*
*
* For example, to add a new item, do as follows:
*
* getGeneral().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Classifier }
*
*
*/
public List getGeneral() {
if (general == null) {
general = new ArrayList();
}
return this.general;
}
/**
* Gets the value of the feature 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 a set
method for the feature property.
*
*
* For example, to add a new item, do as follows:
*
* getFeature().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Feature }
*
*
*/
public List getFeature() {
if (feature == null) {
feature = new ArrayList();
}
return this.feature;
}
/**
* Gets the value of the attribute 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 a set
method for the attribute property.
*
*
* For example, to add a new item, do as follows:
*
* getAttribute().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Property }
*
*
*/
public List getAttribute() {
if (attribute == null) {
attribute = new ArrayList();
}
return this.attribute;
}
}