1 16 17 package test.encoding; 18 19 22 public class DerivatedBean extends SuperBean { 23 24 private String three; 25 26 private String four; 27 28 32 public String getFour() { 33 return four; 34 } 35 36 40 public String getThree() { 41 return three; 42 } 43 44 48 public void setFour(String four) { 49 this.four = four; 50 } 51 52 56 public void setThree(String three) { 57 this.three = three; 58 } 59 60 private static org.apache.axis.description.TypeDesc typeDesc = 62 new org.apache.axis.description.TypeDesc(DerivatedBean.class); 63 64 static { 65 org.apache.axis.description.FieldDesc field = new org.apache.axis.description.ElementDesc(); 66 field.setFieldName("three"); 67 field.setXmlName(new javax.xml.namespace.QName ("", "three")); 68 field.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 69 typeDesc.addFieldDesc(field); 70 field = new org.apache.axis.description.ElementDesc(); 71 field.setFieldName("four"); 72 field.setXmlName(new javax.xml.namespace.QName ("", "four")); 73 field.setXmlType(new javax.xml.namespace.QName ("http://www.w3.org/2001/XMLSchema", "string")); 74 typeDesc.addFieldDesc(field); 75 }; 76 77 80 public static org.apache.axis.description.TypeDesc getTypeDesc() { 81 return typeDesc; 82 } 83 84 85 } 86 | Popular Tags |