org.apache.cxf.systest.jaxrs.codegen.schema
Class Book

java.lang.Object
  extended by org.apache.cxf.systest.jaxrs.codegen.schema.Book

public class Book
extends Object

Java class for book complex type.

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

 <complexType name="book">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://superbooks}thechapter" minOccurs="0"/>
         <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  int id
           
protected  Chapter thechapter
           
 
Constructor Summary
Book()
           
 
Method Summary
 int getId()
          Gets the value of the id property.
 Chapter getThechapter()
          Gets the value of the thechapter property.
 void setId(int value)
          Sets the value of the id property.
 void setThechapter(Chapter value)
          Sets the value of the thechapter property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

thechapter

protected Chapter thechapter

id

protected int id
Constructor Detail

Book

public Book()
Method Detail

getThechapter

public Chapter getThechapter()
Gets the value of the thechapter property.

Returns:
possible object is Chapter

setThechapter

public void setThechapter(Chapter value)
Sets the value of the thechapter property.

Parameters:
value - allowed object is Chapter

getId

public int getId()
Gets the value of the id property.


setId

public void setId(int value)
Sets the value of the id property.



Apache CXF