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

com.facebook.api.schema.InfoItem Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2008.07.20 at 05:29:33 PM PDT 
//


package com.facebook.api.schema;

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


/**
 * 

Java class for info_item complex type. * *

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

 * <complexType name="info_item">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sublabel" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="link" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="image" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="meta" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "info_item", propOrder = { "label", "sublabel", "description", "link", "image", "meta" }) public class InfoItem { @XmlElement(required = true) protected String label; @XmlElement(required = true) protected String sublabel; @XmlElement(required = true) protected String description; @XmlElement(required = true) protected String link; @XmlElement(required = true) protected String image; @XmlElement(required = true) protected String meta; /** * 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; } /** * Gets the value of the sublabel property. * * @return * possible object is * {@link String } * */ public String getSublabel() { return sublabel; } /** * Sets the value of the sublabel property. * * @param value * allowed object is * {@link String } * */ public void setSublabel(String value) { this.sublabel = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * 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; } /** * Gets the value of the image property. * * @return * possible object is * {@link String } * */ public String getImage() { return image; } /** * Sets the value of the image property. * * @param value * allowed object is * {@link String } * */ public void setImage(String value) { this.image = value; } /** * Gets the value of the meta property. * * @return * possible object is * {@link String } * */ public String getMeta() { return meta; } /** * Sets the value of the meta property. * * @param value * allowed object is * {@link String } * */ public void setMeta(String value) { this.meta = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy