Package iofXml.v3
Class InformationItem
-
- All Implemented Interfaces:
public class InformationItem
Defines a general-purpose information object containing a title and content.
Java class for InformationItem complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="InformationItem"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Title" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Content" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description InformationItem()
-
Method Summary
Modifier and Type Method Description String
getTitle()
A short summary of the information. void
setTitle(String value)
Sets the value of the title property. String
getContent()
The information in detailed form. void
setContent(String value)
Sets the value of the content property. XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property. void
setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property. -
-
Method Detail
-
setTitle
void setTitle(String value)
Sets the value of the title property.
- Parameters:
value
- allowed object is String
-
getContent
String getContent()
The information in detailed form.
- Returns:
possibleobject is String
-
setContent
void setContent(String value)
Sets the value of the content property.
- Parameters:
value
- allowed object is String
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
-
-
-