public class StateModel extends Object
Java class for StateModel complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="StateModel">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="State" type="{http://www.miuml.org/metamodel}State" maxOccurs="unbounded"/>
<element ref="{http://www.miuml.org/metamodel}Event" maxOccurs="unbounded"/>
<element name="Transition" type="{http://www.miuml.org/metamodel}Transition" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<jakarta.xml.bind.JAXBElement<? extends Event>> |
event |
protected List<State> |
state |
protected List<Transition> |
transition |
| Constructor and Description |
|---|
StateModel() |
| Modifier and Type | Method and Description |
|---|---|
List<jakarta.xml.bind.JAXBElement<? extends Event>> |
getEvent()
R565+R550+R558+R561+R560,
R565+R550+R557+R554+R560
Gets the value of the event property.
|
List<State> |
getState()
Gets the value of the state property.
|
List<Transition> |
getTransition()
Gets the value of the transition property.
|
protected List<Transition> transition
public List<State> getState()
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 Jakarta XML Binding object.
This is why there is not a set method for the state property.
For example, to add a new item, do as follows:
getState().add(newItem);
Objects of the following type(s) are allowed in the list
State
public List<jakarta.xml.bind.JAXBElement<? extends Event>> getEvent()
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 Jakarta XML Binding object.
This is why there is not a set method for the event property.
For example, to add a new item, do as follows:
getEvent().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement<CreationEvent>
JAXBElement<Event>
JAXBElement<LocalEffectiveSignalingEvent>
public List<Transition> getTransition()
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 Jakarta XML Binding object.
This is why there is not a set method for the transition property.
For example, to add a new item, do as follows:
getTransition().add(newItem);
Objects of the following type(s) are allowed in the list
Transition
Copyright © 2012–2022. All rights reserved.