org.omg.uml.StructuralFeature 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 StructuralFeature complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StructuralFeature">
* <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="type" type="{}Type" maxOccurs="unbounded" minOccurs="0"/>
* <element name="isOrdered" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="isUnique" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lower" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="upper" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="upperValue" type="{}ValueSpecification" maxOccurs="unbounded" minOccurs="0"/>
* <element name="lowerValue" type="{}ValueSpecification" maxOccurs="unbounded" 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="isStatic" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="isReadOnly" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuralFeature", propOrder = {
"ownedElement",
"ownedComment",
"name",
"qualifiedName",
"visibility",
"type",
"isOrdered",
"isUnique",
"lower",
"upper",
"upperValue",
"lowerValue",
"isLeaf",
"redefinitionContext",
"redefinedElement",
"isStatic",
"isReadOnly"
})
@XmlSeeAlso({
Property.class
})
public abstract class StructuralFeature {
protected List ownedElement;
protected List ownedComment;
protected String name;
protected String qualifiedName;
protected VisibilityKind visibility;
protected List type;
@XmlElement(required = true)
protected String isOrdered;
@XmlElement(required = true)
protected String isUnique;
protected String lower;
protected String upper;
protected List upperValue;
protected List lowerValue;
@XmlElement(required = true)
protected String isLeaf;
protected List redefinitionContext;
protected List redefinedElement;
@XmlElement(required = true)
protected String isStatic;
@XmlElement(required = true)
protected String isReadOnly;
/**
* 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 type 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 type property.
*
*
* For example, to add a new item, do as follows:
*
* getType().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Type }
*
*
*/
public List getType() {
if (type == null) {
type = new ArrayList();
}
return this.type;
}
/**
* Gets the value of the isOrdered property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsOrdered() {
return isOrdered;
}
/**
* Sets the value of the isOrdered property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsOrdered(String value) {
this.isOrdered = value;
}
/**
* Gets the value of the isUnique property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsUnique() {
return isUnique;
}
/**
* Sets the value of the isUnique property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsUnique(String value) {
this.isUnique = value;
}
/**
* Gets the value of the lower property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLower() {
return lower;
}
/**
* Sets the value of the lower property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLower(String value) {
this.lower = value;
}
/**
* Gets the value of the upper property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpper() {
return upper;
}
/**
* Sets the value of the upper property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpper(String value) {
this.upper = value;
}
/**
* Gets the value of the upperValue 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 upperValue property.
*
*
* For example, to add a new item, do as follows:
*
* getUpperValue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ValueSpecification }
*
*
*/
public List getUpperValue() {
if (upperValue == null) {
upperValue = new ArrayList();
}
return this.upperValue;
}
/**
* Gets the value of the lowerValue 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 lowerValue property.
*
*
* For example, to add a new item, do as follows:
*
* getLowerValue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ValueSpecification }
*
*
*/
public List getLowerValue() {
if (lowerValue == null) {
lowerValue = new ArrayList();
}
return this.lowerValue;
}
/**
* 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 isStatic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsStatic() {
return isStatic;
}
/**
* Sets the value of the isStatic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsStatic(String value) {
this.isStatic = value;
}
/**
* Gets the value of the isReadOnly property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsReadOnly() {
return isReadOnly;
}
/**
* Sets the value of the isReadOnly property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsReadOnly(String value) {
this.isReadOnly = value;
}
}