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

org.jabber.protocol.activity.Activity 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 org.jabber.protocol.activity;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="doing_chores" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="drinking" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="eating" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="exercising" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="grooming" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="having_appointment" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="inactive" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="relaxing" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="talking" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="traveling" type="{http://jabber.org/protocol/activity}general"/>
 *           <element name="working" type="{http://jabber.org/protocol/activity}general"/>
 *         </choice>
 *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "doingChores", "drinking", "eating", "exercising", "grooming", "havingAppointment", "inactive", "relaxing", "talking", "traveling", "working", "text" }) @XmlRootElement(name = "activity") public class Activity { @XmlElement(name = "doing_chores") protected General doingChores; protected General drinking; protected General eating; protected General exercising; protected General grooming; @XmlElement(name = "having_appointment") protected General havingAppointment; protected General inactive; protected General relaxing; protected General talking; protected General traveling; protected General working; protected String text; /** * Gets the value of the doingChores property. * * @return * possible object is * {@link General } * */ public General getDoingChores() { return doingChores; } /** * Sets the value of the doingChores property. * * @param value * allowed object is * {@link General } * */ public void setDoingChores(General value) { this.doingChores = value; } /** * Gets the value of the drinking property. * * @return * possible object is * {@link General } * */ public General getDrinking() { return drinking; } /** * Sets the value of the drinking property. * * @param value * allowed object is * {@link General } * */ public void setDrinking(General value) { this.drinking = value; } /** * Gets the value of the eating property. * * @return * possible object is * {@link General } * */ public General getEating() { return eating; } /** * Sets the value of the eating property. * * @param value * allowed object is * {@link General } * */ public void setEating(General value) { this.eating = value; } /** * Gets the value of the exercising property. * * @return * possible object is * {@link General } * */ public General getExercising() { return exercising; } /** * Sets the value of the exercising property. * * @param value * allowed object is * {@link General } * */ public void setExercising(General value) { this.exercising = value; } /** * Gets the value of the grooming property. * * @return * possible object is * {@link General } * */ public General getGrooming() { return grooming; } /** * Sets the value of the grooming property. * * @param value * allowed object is * {@link General } * */ public void setGrooming(General value) { this.grooming = value; } /** * Gets the value of the havingAppointment property. * * @return * possible object is * {@link General } * */ public General getHavingAppointment() { return havingAppointment; } /** * Sets the value of the havingAppointment property. * * @param value * allowed object is * {@link General } * */ public void setHavingAppointment(General value) { this.havingAppointment = value; } /** * Gets the value of the inactive property. * * @return * possible object is * {@link General } * */ public General getInactive() { return inactive; } /** * Sets the value of the inactive property. * * @param value * allowed object is * {@link General } * */ public void setInactive(General value) { this.inactive = value; } /** * Gets the value of the relaxing property. * * @return * possible object is * {@link General } * */ public General getRelaxing() { return relaxing; } /** * Sets the value of the relaxing property. * * @param value * allowed object is * {@link General } * */ public void setRelaxing(General value) { this.relaxing = value; } /** * Gets the value of the talking property. * * @return * possible object is * {@link General } * */ public General getTalking() { return talking; } /** * Sets the value of the talking property. * * @param value * allowed object is * {@link General } * */ public void setTalking(General value) { this.talking = value; } /** * Gets the value of the traveling property. * * @return * possible object is * {@link General } * */ public General getTraveling() { return traveling; } /** * Sets the value of the traveling property. * * @param value * allowed object is * {@link General } * */ public void setTraveling(General value) { this.traveling = value; } /** * Gets the value of the working property. * * @return * possible object is * {@link General } * */ public General getWorking() { return working; } /** * Sets the value of the working property. * * @param value * allowed object is * {@link General } * */ public void setWorking(General value) { this.working = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy