1 16 17 package test.encoding; 18 19 22 public class SuperBean { 23 24 private String zero; 26 private String one; 27 private String two; 28 29 33 public String getOne() { 34 return one; 35 } 36 37 41 public String getTwo() { 42 return two; 43 } 44 45 49 public String getZero() { 50 return zero; 51 } 52 53 57 public void setOne(String one) { 58 this.one = one; 59 } 60 61 65 public void setTwo(String two) { 66 this.two = two; 67 } 68 69 73 public void setZero(String zero) { 74 this.zero = zero; 75 } 76 77 private static org.apache.axis.description.TypeDesc typeDesc = 79 new org.apache.axis.description.TypeDesc(SuperBean.class); 80 81 static { 82 org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc(); 83 field.setFieldName("zero"); 84 field.setXmlName(new javax.xml.namespace.QName ("", "zero")); 85 field.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 86 typeDesc.addFieldDesc(field); 87 field = new org.apache.axis.description.ElementDesc(); 88 field.setFieldName("one"); 89 field.setXmlName(new javax.xml.namespace.QName ("", "one")); 90 field.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 91 typeDesc.addFieldDesc(field); 92 field = new org.apache.axis.description.ElementDesc(); 93 field.setFieldName("two"); 94 field.setXmlName(new javax.xml.namespace.QName ("", "two")); 95 field.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 96 typeDesc.addFieldDesc(field); 97 }; 98 99 102 public static org.apache.axis.description.TypeDesc getTypeDesc() { 103 return typeDesc; 104 } 105 } | Popular Tags |