|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.xmlhammer.model.project.Output
public class Output
Java class for output element declaration.
The following schema fragment specifies the expected content contained within this class.
<element name="output">
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://www.xmlhammer.org/2007/project}warning" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.xmlhammer.org/2007/project}error" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.xmlhammer.org/2007/project}fatal" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.xmlhammer.org/2007/project}valid" minOccurs="0"/>
<sequence maxOccurs="unbounded" minOccurs="0">
<choice>
<element ref="{http://www.xmlhammer.org/2007/project}element"/>
<element ref="{http://www.xmlhammer.org/2007/project}attribute"/>
<element ref="{http://www.xmlhammer.org/2007/project}text"/>
<element ref="{http://www.xmlhammer.org/2007/project}comment"/>
<element ref="{http://www.xmlhammer.org/2007/project}processingInstruction"/>
<element ref="{http://www.xmlhammer.org/2007/project}boolean"/>
<element ref="{http://www.xmlhammer.org/2007/project}number"/>
<element ref="{http://www.xmlhammer.org/2007/project}string"/>
<element ref="{http://www.xmlhammer.org/2007/project}object"/>
</choice>
</sequence>
<element ref="{http://www.xmlhammer.org/2007/project}message" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="end" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
<attribute name="start" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
</restriction>
</complexContent>
</complexType>
</element>
| Field Summary | |
|---|---|
protected java.util.List<java.lang.Object> |
elementOrAttributeOrText
|
protected javax.xml.datatype.XMLGregorianCalendar |
end
|
protected java.util.List<Error> |
error
|
protected java.util.List<Fatal> |
fatal
|
protected java.util.List<Message> |
message
|
protected javax.xml.datatype.XMLGregorianCalendar |
start
|
protected Valid |
valid
|
protected java.util.List<Warning> |
warning
|
| Constructor Summary | |
|---|---|
Output()
|
|
| Method Summary | |
|---|---|
java.util.List<java.lang.Object> |
getElementOrAttributeOrText()
Gets the value of the elementOrAttributeOrText property. |
javax.xml.datatype.XMLGregorianCalendar |
getEnd()
Gets the value of the end property. |
java.util.List<Error> |
getError()
Gets the value of the error property. |
java.util.List<Fatal> |
getFatal()
Gets the value of the fatal property. |
java.util.List<Message> |
getMessage()
Gets the value of the message property. |
javax.xml.datatype.XMLGregorianCalendar |
getStart()
Gets the value of the start property. |
Valid |
getValid()
Gets the value of the valid property. |
java.util.List<Warning> |
getWarning()
Gets the value of the warning property. |
void |
setEnd(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the end property. |
void |
setStart(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the start property. |
void |
setValid(Valid value)
Sets the value of the valid property. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected java.util.List<Warning> warning
protected java.util.List<Error> error
protected java.util.List<Fatal> fatal
protected Valid valid
protected java.util.List<java.lang.Object> elementOrAttributeOrText
protected java.util.List<Message> message
protected javax.xml.datatype.XMLGregorianCalendar end
protected javax.xml.datatype.XMLGregorianCalendar start
| Constructor Detail |
|---|
public Output()
| Method Detail |
|---|
public java.util.List<Warning> getWarning()
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 warning property.
For example, to add a new item, do as follows:
getWarning().add(newItem);
Objects of the following type(s) are allowed in the list
Warning
public java.util.List<Error> getError()
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 error property.
For example, to add a new item, do as follows:
getError().add(newItem);
Objects of the following type(s) are allowed in the list
Error
public java.util.List<Fatal> getFatal()
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 fatal property.
For example, to add a new item, do as follows:
getFatal().add(newItem);
Objects of the following type(s) are allowed in the list
Fatal
public Valid getValid()
Validpublic void setValid(Valid value)
value - allowed object is
Validpublic java.util.List<java.lang.Object> getElementOrAttributeOrText()
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 elementOrAttributeOrText property.
For example, to add a new item, do as follows:
getElementOrAttributeOrText().add(newItem);
Objects of the following type(s) are allowed in the list
Comment
Attribute
Element
Number
String
ProcessingInstruction
Text
Object
Boolean
public java.util.List<Message> getMessage()
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 message property.
For example, to add a new item, do as follows:
getMessage().add(newItem);
Objects of the following type(s) are allowed in the list
Message
public javax.xml.datatype.XMLGregorianCalendar getEnd()
XMLGregorianCalendarpublic void setEnd(javax.xml.datatype.XMLGregorianCalendar value)
value - allowed object is
XMLGregorianCalendarpublic javax.xml.datatype.XMLGregorianCalendar getStart()
XMLGregorianCalendarpublic void setStart(javax.xml.datatype.XMLGregorianCalendar value)
value - allowed object is
XMLGregorianCalendar
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||