FileDocCategorySizeDatePackage
SuperBean.javaAPI DocApache Axis 1.42796Sat Apr 22 18:57:28 BST 2006test.encoding

SuperBean

public class SuperBean extends Object
A simple type with several elements for testing serialization

Fields Summary
private String
zero
private String
one
private String
two
private static org.apache.axis.description.TypeDesc
typeDesc
Constructors Summary
Methods Summary
public java.lang.StringgetOne()
Returns the one.

return
String

		return one;
	
public java.lang.StringgetTwo()
Returns the two.

return
String

		return two;
	
public static org.apache.axis.description.TypeDescgetTypeDesc()
Return type metadata object


	 
		org.apache.axis.description.ElementDesc field = new org.apache.axis.description.ElementDesc();
		field.setFieldName("zero");
		field.setXmlName(new javax.xml.namespace.QName("", "zero"));
		field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        field.setNillable(true);
		typeDesc.addFieldDesc(field);
		field = new org.apache.axis.description.ElementDesc();
		field.setFieldName("one");
		field.setXmlName(new javax.xml.namespace.QName("", "one"));
		field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        field.setNillable(true);
		typeDesc.addFieldDesc(field);
		field = new org.apache.axis.description.ElementDesc();
		field.setFieldName("two");
		field.setXmlName(new javax.xml.namespace.QName("", "two"));
		field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        field.setNillable(true);
		typeDesc.addFieldDesc(field);
	
		return typeDesc;
	
public java.lang.StringgetZero()
Returns the zero.

return
String

		return zero;
	
public voidsetOne(java.lang.String one)
Sets the one.

param
one The one to set

		this.one = one;
	
public voidsetTwo(java.lang.String two)
Sets the two.

param
two The two to set

		this.two = two;
	
public voidsetZero(java.lang.String zero)
Sets the zero.

param
zero The zero to set

		this.zero = zero;