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

org.xmpp.extensions.Div Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2020.10.04 at 01:10:24 PM KST 
//


package org.xmpp.extensions;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
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">
 *       <choice maxOccurs="unbounded">
 *         <element ref="{http://www.xmpp.org/extensions}div" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.xmpp.org/extensions}p" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.xmpp.org/extensions}example" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.xmpp.org/extensions}code" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.xmpp.org/extensions}ul" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.xmpp.org/extensions}ol" maxOccurs="unbounded" minOccurs="0"/>
 *       </choice>
 *       <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="style" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "divOrPOrExample" }) @XmlRootElement(name = "div") public class Div { @XmlElements({ @XmlElement(name = "div", type = Div.class), @XmlElement(name = "p", type = Markup.class), @XmlElement(name = "example", type = Example.class), @XmlElement(name = "code", type = Code.class), @XmlElement(name = "ul", type = Ul.class), @XmlElement(name = "ol", type = Ol.class) }) protected List divOrPOrExample; @XmlAttribute(name = "class") protected String clazz; @XmlAttribute(name = "style") protected String style; /** * Gets the value of the divOrPOrExample property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the divOrPOrExample property. * *

* For example, to add a new item, do as follows: *

     *    getDivOrPOrExample().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Div } * {@link Markup } * {@link Example } * {@link Code } * {@link Ul } * {@link Ol } * * */ public List getDivOrPOrExample() { if (divOrPOrExample == null) { divOrPOrExample = new ArrayList(); } return this.divOrPOrExample; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Gets the value of the style property. * * @return * possible object is * {@link String } * */ public String getStyle() { return style; } /** * Sets the value of the style property. * * @param value * allowed object is * {@link String } * */ public void setStyle(String value) { this.style = value; } }