org.omg.uml.Parameter 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.XmlType;
/**
* Java class for Parameter complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Parameter">
* <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="default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="direction" type="{}ParameterDirectionKind"/>
* <element name="defaultValue" type="{}ValueSpecification" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Parameter", propOrder = {
"ownedElement",
"ownedComment",
"name",
"qualifiedName",
"visibility",
"type",
"isOrdered",
"isUnique",
"lower",
"upper",
"upperValue",
"lowerValue",
"_default",
"direction",
"defaultValue"
})
public class Parameter {
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(name = "default")
protected String _default;
@XmlElement(required = true)
protected ParameterDirectionKind direction;
protected List defaultValue;
/**
* 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 default property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefault() {
return _default;
}
/**
* Sets the value of the default property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefault(String value) {
this._default = value;
}
/**
* Gets the value of the direction property.
*
* @return
* possible object is
* {@link ParameterDirectionKind }
*
*/
public ParameterDirectionKind getDirection() {
return direction;
}
/**
* Sets the value of the direction property.
*
* @param value
* allowed object is
* {@link ParameterDirectionKind }
*
*/
public void setDirection(ParameterDirectionKind value) {
this.direction = value;
}
/**
* Gets the value of the defaultValue 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 defaultValue property.
*
*
* For example, to add a new item, do as follows:
*
* getDefaultValue().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ValueSpecification }
*
*
*/
public List getDefaultValue() {
if (defaultValue == null) {
defaultValue = new ArrayList();
}
return this.defaultValue;
}
}