1 16 17 package test.wsdl.roundtrip; 18 19 import java.math.BigDecimal ; 20 import java.math.BigInteger ; 21 import java.util.Calendar ; 22 import java.util.HashMap ; 23 24 33 public class BondInvestment implements java.io.Serializable { 34 35 private boolean taxableInvestment; 36 public byte taxIndicator; 37 public short docType; 38 public int stockBeta; 39 public long yield; 40 public float lastTradePrice; 41 public double fiftyTwoWeekHigh; 42 private String tradeExchange; 43 public BigInteger portfolioType; 44 public BigDecimal bondAmount; 45 public Calendar callableDate; 46 public byte[] byteArray; 47 private short[] shortArray; 48 private Boolean wrapperBoolean; 49 private Byte wrapperByte; 50 private Short wrapperShort; 51 public Integer wrapperInteger; 52 public Float wrapperFloat; 53 private Double wrapperDouble; 54 public Byte [] wrapperByteArray; 55 public Short [] wrapperShortArray; 56 private CallOptions[] options; 57 public Object options2; 58 public Object options3; 59 public int id; 60 public HashMap map; 61 62 public BondInvestment() { 63 64 } 66 public void setTaxableInvestment(boolean taxableInvestment) { 67 this.taxableInvestment = taxableInvestment; 68 } 70 public boolean getTaxableInvestment() { 71 return this.taxableInvestment; 72 } 74 public void setTradeExchange(String tradeExchange) { 75 this.tradeExchange = tradeExchange; 76 } 78 public String getTradeExchange() { 79 return this.tradeExchange; 80 } 82 public void setShortArray(short[] shortArray) { 83 this.shortArray = shortArray; 84 } 86 public short[] getShortArray() { 87 return this.shortArray; 88 } 90 public void setWrapperBoolean(Boolean wrapperBoolean) { 91 this.wrapperBoolean = wrapperBoolean; 92 } 94 public Boolean getWrapperBoolean() { 95 return this.wrapperBoolean; 96 } 98 public void setWrapperByte(Byte wrapperByte) { 99 this.wrapperByte = wrapperByte; 100 } 102 public Byte getWrapperByte() { 103 return this.wrapperByte; 104 } 106 public void setWrapperShort(Short wrapperShort) { 107 this.wrapperShort = wrapperShort; 108 } 110 public Short getWrapperShort() { 111 return this.wrapperShort; 112 } 114 public void setWrapperDouble(Double wrapperDouble) { 115 this.wrapperDouble = wrapperDouble; 116 } 118 public Double getWrapperDouble() { 119 return this.wrapperDouble; 120 } 122 private static java.lang.String [] _attrs = new String [] { 124 "taxIndicator", 125 "docType", 126 "stockBeta" 127 }; 128 129 132 public static java.lang.String [] getAttributeElements() { 133 return _attrs; 134 } 135 136 public CallOptions getOptions(int i) { 137 return options[i]; 138 } 139 140 public void setOptions(int i, CallOptions value) { 141 if (options == null || 142 options.length <= i) { 143 CallOptions[] a = new CallOptions[i + 1]; 144 if (options != null) { 145 for(int j=0; j<options.length; j++) 146 a[j] = options[j]; 147 } 148 options = a; 149 } 150 options[i] = value; 151 } 152 153 public CallOptions[] getOptions() { 154 return options; 155 } 156 157 public void setOptions(CallOptions[] options) { 158 this.options = options; 159 } 160 161 public HashMap getMap() { 162 return map; 163 } 164 165 public void setMap(HashMap map) { 166 this.map = map; 167 } 168 } | Popular Tags |