Class LogType
- java.lang.Object
-
- science.aist.ocel.model.AttributableType
-
- science.aist.ocel.model.ElementType
-
- science.aist.ocel.model.LogType
-
public class LogType extends ElementType
Java class for LogType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LogType"> <complexContent> <extension base="{}ElementType"> <sequence> <element name="global" type="{}GlobalsType" maxOccurs="4" minOccurs="0"/> <element name="events" type="{}EventsType" maxOccurs="unbounded" minOccurs="0"/> <element name="objects" type="{}ObjectsType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<EventsType>
events
protected List<GlobalsType>
global
protected List<ObjectsType>
objects
-
Fields inherited from class science.aist.ocel.model.AttributableType
stringOrDateOrInt
-
-
Constructor Summary
Constructors Constructor Description LogType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<EventsType>
getEvents()
Gets the value of the events property.List<GlobalsType>
getGlobal()
Gets the value of the global property.List<ObjectsType>
getObjects()
Gets the value of the objects property.-
Methods inherited from class science.aist.ocel.model.AttributableType
getStringOrDateOrInt
-
-
-
-
Field Detail
-
global
protected List<GlobalsType> global
-
events
protected List<EventsType> events
-
objects
protected List<ObjectsType> objects
-
-
Method Detail
-
getGlobal
public List<GlobalsType> getGlobal()
Gets the value of the global 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 global property.For example, to add a new item, do as follows:
getGlobal().add(newItem);
Objects of the following type(s) are allowed in the list
GlobalsType
-
getEvents
public List<EventsType> getEvents()
Gets the value of the events 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 events property.For example, to add a new item, do as follows:
getEvents().add(newItem);
Objects of the following type(s) are allowed in the list
EventsType
-
getObjects
public List<ObjectsType> getObjects()
Gets the value of the objects 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 objects property.For example, to add a new item, do as follows:
getObjects().add(newItem);
Objects of the following type(s) are allowed in the list
ObjectsType
-
-