Package iofXml.v3

Class InformationItem

java.lang.Object
iofXml.v3.InformationItem

public class InformationItem extends Object
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>
 
  • Field Details

    • title

      protected String title
      A short summary of the information.
    • content

      protected String content
      The information in detailed form.
    • modifyTime

      protected XMLGregorianCalendar modifyTime
  • Constructor Details

    • InformationItem

      public InformationItem()
  • Method Details

    • getTitle

      public String getTitle()
      A short summary of the information.
      Returns:
      possible object is String
    • setTitle

      public void setTitle(String value)
      Sets the value of the title property.
      Parameters:
      value - allowed object is String
      See Also:
    • getContent

      public String getContent()
      The information in detailed form.
      Returns:
      possible object is String
    • setContent

      public void setContent(String value)
      Sets the value of the content property.
      Parameters:
      value - allowed object is String
      See Also:
    • getModifyTime

      public XMLGregorianCalendar getModifyTime()
      Gets the value of the modifyTime property.
      Returns:
      possible object is XMLGregorianCalendar
    • setModifyTime

      public void setModifyTime(XMLGregorianCalendar value)
      Sets the value of the modifyTime property.
      Parameters:
      value - allowed object is XMLGregorianCalendar