Package iofXml.v3
Class InformationItem
-
- All Implemented Interfaces:
public class InformationItemDefines 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 StringgetTitle()A short summary of the information. voidsetTitle(String value)Sets the value of the title property. StringgetContent()The information in detailed form. voidsetContent(String value)Sets the value of the content property. XMLGregorianCalendargetModifyTime()Gets the value of the modifyTime property. voidsetModifyTime(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
-
-
-
-