Class EventAndEventRefRDCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.EventAndEventRefRDCT
-
public class EventAndEventRefRDCT extends Object
Event and EventRef set for EventportsJava class for EventAndEventRef_RD_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EventAndEventRef_RD_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Event" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}SymbolForEventPort_CT" maxOccurs="unbounded" minOccurs="0"/> <element name="EventRef" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}SymbolRefTypeForEventPort_CT" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<SymbolForEventPortCT>
event
protected List<SymbolRefTypeForEventPortCT>
eventRef
-
Constructor Summary
Constructors Constructor Description EventAndEventRefRDCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SymbolForEventPortCT>
getEvent()
Gets the value of the event property.List<SymbolRefTypeForEventPortCT>
getEventRef()
Gets the value of the eventRef property.
-
-
-
Field Detail
-
event
protected List<SymbolForEventPortCT> event
-
eventRef
protected List<SymbolRefTypeForEventPortCT> eventRef
-
-
Method Detail
-
getEvent
public List<SymbolForEventPortCT> getEvent()
Gets the value of the event 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 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
SymbolForEventPortCT
-
getEventRef
public List<SymbolRefTypeForEventPortCT> getEventRef()
Gets the value of the eventRef 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 eventRef property.For example, to add a new item, do as follows:
getEventRef().add(newItem);
Objects of the following type(s) are allowed in the list
SymbolRefTypeForEventPortCT
-
-