org.apache.type_test.types1
Class SimpleStruct

java.lang.Object
  extended by org.apache.type_test.types1.SimpleStruct
Direct Known Subclasses:
DerivedChoiceBaseStruct, DerivedNoContent, DerivedStructBaseStruct, RestrictedStructBaseStruct

public class SimpleStruct
extends Object

Java class for SimpleStruct complex type.

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

 <complexType name="SimpleStruct">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="varFloat" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="varInt" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
         <element name="varString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
       </sequence>
       <attribute name="varAttrString" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String varAttrString
           
protected  double varFloat
           
protected  BigInteger varInt
           
protected  String varString
           
 
Constructor Summary
SimpleStruct()
           
 
Method Summary
 String getVarAttrString()
          Gets the value of the varAttrString property.
 double getVarFloat()
          Gets the value of the varFloat property.
 BigInteger getVarInt()
          Gets the value of the varInt property.
 String getVarString()
          Gets the value of the varString property.
 void setVarAttrString(String value)
          Sets the value of the varAttrString property.
 void setVarFloat(double value)
          Sets the value of the varFloat property.
 void setVarInt(BigInteger value)
          Sets the value of the varInt property.
 void setVarString(String value)
          Sets the value of the varString property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

varFloat

protected double varFloat

varInt

protected BigInteger varInt

varString

protected String varString

varAttrString

protected String varAttrString
Constructor Detail

SimpleStruct

public SimpleStruct()
Method Detail

getVarFloat

public double getVarFloat()
Gets the value of the varFloat property.


setVarFloat

public void setVarFloat(double value)
Sets the value of the varFloat property.


getVarInt

public BigInteger getVarInt()
Gets the value of the varInt property.

Returns:
possible object is BigInteger

setVarInt

public void setVarInt(BigInteger value)
Sets the value of the varInt property.

Parameters:
value - allowed object is BigInteger

getVarString

public String getVarString()
Gets the value of the varString property.

Returns:
possible object is String

setVarString

public void setVarString(String value)
Sets the value of the varString property.

Parameters:
value - allowed object is String

getVarAttrString

public String getVarAttrString()
Gets the value of the varAttrString property.

Returns:
possible object is String

setVarAttrString

public void setVarAttrString(String value)
Sets the value of the varAttrString property.

Parameters:
value - allowed object is String


Apache CXF