All Downloads are FREE. Search and download functionalities are using the official Maven repository.

storage.rosternotes.Note Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2007.03.23 at 05:33:02 PM UTC 
//


package storage.rosternotes;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="cdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="jid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="mdate" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "note") public class Note { @XmlValue protected String value; @XmlAttribute protected XMLGregorianCalendar cdate; @XmlAttribute(required = true) protected String jid; @XmlAttribute protected XMLGregorianCalendar mdate; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the cdate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCdate() { return cdate; } /** * Sets the value of the cdate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCdate(XMLGregorianCalendar value) { this.cdate = value; } /** * Gets the value of the jid property. * * @return * possible object is * {@link String } * */ public String getJid() { return jid; } /** * Sets the value of the jid property. * * @param value * allowed object is * {@link String } * */ public void setJid(String value) { this.jid = value; } /** * Gets the value of the mdate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMdate() { return mdate; } /** * Sets the value of the mdate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMdate(XMLGregorianCalendar value) { this.mdate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy