com.google.code.facebookapi.schema
Class CustomTag

java.lang.Object
  extended by com.google.code.facebookapi.schema.CustomTag
All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString

public class CustomTag
extends java.lang.Object
implements org.jvnet.jaxb2_commons.lang.Equals, org.jvnet.jaxb2_commons.lang.HashCode, org.jvnet.jaxb2_commons.lang.ToString

Java class for custom_tag complex type.

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

 <complexType name="custom_tag">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="type" type="{http://www.w3.org/2001/XMLSchema}int"/>
         <element name="summary" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="parameter">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <sequence maxOccurs="unbounded" minOccurs="0">
                   <element name="custom_tag_parameter" type="{http://api.facebook.com/1.0/}custom_tag_parameter" maxOccurs="unbounded" minOccurs="0"/>
                 </sequence>
                 <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}boolean" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="body" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="open_tag" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="close_tag" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Nested Class Summary
static class CustomTag.Parameter
          Java class for anonymous complex type.
 
Field Summary
protected  java.lang.String body
           
protected  java.lang.String closeTag
           
protected  java.lang.String description
           
protected  java.lang.String name
           
protected  java.lang.String openTag
           
protected  CustomTag.Parameter parameter
           
protected  java.lang.String summary
           
protected  int type
           
 
Constructor Summary
CustomTag()
           
 
Method Summary
 boolean equals(java.lang.Object object)
           
 void equals(java.lang.Object object, org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
           
 java.lang.String getBody()
          Gets the value of the body property.
 java.lang.String getCloseTag()
          Gets the value of the closeTag property.
 java.lang.String getDescription()
          Gets the value of the description property.
 java.lang.String getName()
          Gets the value of the name property.
 java.lang.String getOpenTag()
          Gets the value of the openTag property.
 CustomTag.Parameter getParameter()
          Gets the value of the parameter property.
 java.lang.String getSummary()
          Gets the value of the summary property.
 int getType()
          Gets the value of the type property.
 int hashCode()
           
 void hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
           
 void setBody(java.lang.String value)
          Sets the value of the body property.
 void setCloseTag(java.lang.String value)
          Sets the value of the closeTag property.
 void setDescription(java.lang.String value)
          Sets the value of the description property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 void setOpenTag(java.lang.String value)
          Sets the value of the openTag property.
 void setParameter(CustomTag.Parameter value)
          Sets the value of the parameter property.
 void setSummary(java.lang.String value)
          Sets the value of the summary property.
 void setType(int value)
          Sets the value of the type property.
 java.lang.String toString()
           
 void toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

name

protected java.lang.String name

type

protected int type

summary

protected java.lang.String summary

description

protected java.lang.String description

parameter

protected CustomTag.Parameter parameter

body

protected java.lang.String body

openTag

protected java.lang.String openTag

closeTag

protected java.lang.String closeTag
Constructor Detail

CustomTag

public CustomTag()
Method Detail

getName

public java.lang.String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(java.lang.String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getType

public int getType()
Gets the value of the type property.


setType

public void setType(int value)
Sets the value of the type property.


getSummary

public java.lang.String getSummary()
Gets the value of the summary property.

Returns:
possible object is String

setSummary

public void setSummary(java.lang.String value)
Sets the value of the summary property.

Parameters:
value - allowed object is String

getDescription

public java.lang.String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(java.lang.String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

getParameter

public CustomTag.Parameter getParameter()
Gets the value of the parameter property.

Returns:
possible object is CustomTag.Parameter

setParameter

public void setParameter(CustomTag.Parameter value)
Sets the value of the parameter property.

Parameters:
value - allowed object is CustomTag.Parameter

getBody

public java.lang.String getBody()
Gets the value of the body property.

Returns:
possible object is String

setBody

public void setBody(java.lang.String value)
Sets the value of the body property.

Parameters:
value - allowed object is String

getOpenTag

public java.lang.String getOpenTag()
Gets the value of the openTag property.

Returns:
possible object is String

setOpenTag

public void setOpenTag(java.lang.String value)
Sets the value of the openTag property.

Parameters:
value - allowed object is String

getCloseTag

public java.lang.String getCloseTag()
Gets the value of the closeTag property.

Returns:
possible object is String

setCloseTag

public void setCloseTag(java.lang.String value)
Sets the value of the closeTag property.

Parameters:
value - allowed object is String

toString

public void toString(org.apache.commons.lang.builder.ToStringBuilder toStringBuilder)
Specified by:
toString in interface org.jvnet.jaxb2_commons.lang.ToString

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

equals

public void equals(java.lang.Object object,
                   org.apache.commons.lang.builder.EqualsBuilder equalsBuilder)
Specified by:
equals in interface org.jvnet.jaxb2_commons.lang.Equals

equals

public boolean equals(java.lang.Object object)
Overrides:
equals in class java.lang.Object

hashCode

public void hashCode(org.apache.commons.lang.builder.HashCodeBuilder hashCodeBuilder)
Specified by:
hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object


Copyright © 2009. All Rights Reserved.