org.omg.uml.RedefinableElement 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 RedefinableElement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RedefinableElement">
* <complexContent>
* <extension base="{}NamedElement">
* <sequence>
* <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"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RedefinableElement", propOrder = {
"isLeaf",
"redefinitionContext",
"redefinedElement"
})
@XmlSeeAlso({
Feature.class
})
public abstract class RedefinableElement
extends NamedElement
{
@XmlElement(required = true)
protected String isLeaf;
protected List redefinitionContext;
protected List redefinedElement;
/**
* 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;
}
}