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

org.openfuxml.addon.jsfapp.data.jaxb.Menuitem Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2011.04.15 at 10:14:57 PM MESZ 
//


package org.openfuxml.addon.jsfapp.data.jaxb;

import java.io.Serializable;
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.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>
 *         <element ref="{http://www.openfuxml.org/jsfapp}menuitem" maxOccurs="unbounded"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="active" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="level" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="link" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="auth" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "menuitem" }) @XmlRootElement(name = "menuitem") public class Menuitem implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(required = true) protected List menuitem; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "active") protected Boolean active; @XmlAttribute(name = "level") protected Integer level; @XmlAttribute(name = "label") protected String label; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "link") protected String link; @XmlAttribute(name = "auth") protected Boolean auth; /** * Gets the value of the menuitem 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 menuitem property. * *

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

     *    getMenuitem().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Menuitem } * * */ public List getMenuitem() { if (menuitem == null) { menuitem = new ArrayList(); } return this.menuitem; } public boolean isSetMenuitem() { return ((this.menuitem!= null)&&(!this.menuitem.isEmpty())); } public void unsetMenuitem() { this.menuitem = null; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } public boolean isSetId() { return (this.id!= null); } /** * Gets the value of the active property. * * @return * possible object is * {@link Boolean } * */ public boolean isActive() { return active; } /** * Sets the value of the active property. * * @param value * allowed object is * {@link Boolean } * */ public void setActive(boolean value) { this.active = value; } public boolean isSetActive() { return (this.active!= null); } public void unsetActive() { this.active = null; } /** * Gets the value of the level property. * * @return * possible object is * {@link Integer } * */ public int getLevel() { return level; } /** * Sets the value of the level property. * * @param value * allowed object is * {@link Integer } * */ public void setLevel(int value) { this.level = value; } public boolean isSetLevel() { return (this.level!= null); } public void unsetLevel() { this.level = null; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } public boolean isSetLabel() { return (this.label!= null); } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } /** * Gets the value of the link property. * * @return * possible object is * {@link String } * */ public String getLink() { return link; } /** * Sets the value of the link property. * * @param value * allowed object is * {@link String } * */ public void setLink(String value) { this.link = value; } public boolean isSetLink() { return (this.link!= null); } /** * Gets the value of the auth property. * * @return * possible object is * {@link Boolean } * */ public boolean isAuth() { return auth; } /** * Sets the value of the auth property. * * @param value * allowed object is * {@link Boolean } * */ public void setAuth(boolean value) { this.auth = value; } public boolean isSetAuth() { return (this.auth!= null); } public void unsetAuth() { this.auth = null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy