FileDocCategorySizeDatePackage
DerivatedBean.javaAPI DocApache Axis 1.42276Sat Apr 22 18:57:26 BST 2006test.encoding

DerivatedBean

public class DerivatedBean extends SuperBean
A type used for testing serialization of inherited elements

Fields Summary
private String
three
private String
four
private static org.apache.axis.description.TypeDesc
typeDesc
Constructors Summary
Methods Summary
public java.lang.StringgetFour()
Returns the four.

return
String

		return four;
	
public java.lang.StringgetThree()
Returns the three.

return
String

		return three;
	
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("three");
		field.setXmlName(new javax.xml.namespace.QName("", "three"));
		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("four");
		field.setXmlName(new javax.xml.namespace.QName("", "four"));
		field.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
        field.setNillable(true);
		typeDesc.addFieldDesc(field);
	
		return typeDesc;
	
public voidsetFour(java.lang.String four)
Sets the four.

param
four The four to set

		this.four = four;
	
public voidsetThree(java.lang.String three)
Sets the three.

param
three The three to set

		this.three = three;