1 17 package org.apache.ws.echosample; 18 19 import java.io.Serializable ; 20 21 public class EchoStruct implements Serializable { 22 private int intVal; 23 private double doubleVal; 24 private byte[] bytesVal; 25 private float floatVal; 26 private long longVal; 27 private short shortVal; 28 private boolean boolaenVal; 29 30 private String strVal; 31 32 private int[] intaVal; 33 private double[] doubleaVal; 34 private byte[][] bytesaVal; 35 private float[] floataVal; 36 private long[] longaVal; 37 private short[] shortaVal; 38 private boolean[] boolaenaVal; 39 40 private String [] straVal; 41 42 private SmallEchoStruct sturctVal; 43 private SmallEchoStruct sturctaVal; 44 45 48 public boolean[] getBoolaenaVal() { 49 return boolaenaVal; 50 } 51 52 55 public boolean isBoolaenVal() { 56 return boolaenVal; 57 } 58 59 62 public byte[][] getBytesaVal() { 63 return bytesaVal; 64 } 65 66 69 public byte[] getBytesVal() { 70 return bytesVal; 71 } 72 73 76 public double[] getDoubleaVal() { 77 return doubleaVal; 78 } 79 80 83 public double getDoubleVal() { 84 return doubleVal; 85 } 86 87 90 public float[] getFloataVal() { 91 return floataVal; 92 } 93 94 97 public float getFloatVal() { 98 return floatVal; 99 } 100 101 104 public int[] getIntaVal() { 105 return intaVal; 106 } 107 108 111 public int getIntVal() { 112 return intVal; 113 } 114 115 118 public long[] getLongaVal() { 119 return longaVal; 120 } 121 122 125 public long getLongVal() { 126 return longVal; 127 } 128 129 132 public short[] getShortaVal() { 133 return shortaVal; 134 } 135 136 139 public short getShortVal() { 140 return shortVal; 141 } 142 143 146 public String [] getStraVal() { 147 return straVal; 148 } 149 150 153 public String getStrVal() { 154 return strVal; 155 } 156 157 160 public void setBoolaenaVal(boolean[] bs) { 161 boolaenaVal = bs; 162 } 163 164 167 public void setBoolaenVal(boolean b) { 168 boolaenVal = b; 169 } 170 171 174 public void setBytesaVal(byte[][] bs) { 175 bytesaVal = bs; 176 } 177 178 181 public void setBytesVal(byte[] bs) { 182 bytesVal = bs; 183 } 184 185 188 public void setDoubleaVal(double[] ds) { 189 doubleaVal = ds; 190 } 191 192 195 public void setDoubleVal(double d) { 196 doubleVal = d; 197 } 198 199 202 public void setFloataVal(float[] fs) { 203 floataVal = fs; 204 } 205 206 209 public void setFloatVal(float f) { 210 floatVal = f; 211 } 212 213 216 public void setIntaVal(int[] is) { 217 intaVal = is; 218 } 219 220 223 public void setIntVal(int i) { 224 intVal = i; 225 } 226 227 230 public void setLongaVal(long[] ls) { 231 longaVal = ls; 232 } 233 234 237 public void setLongVal(long l) { 238 longVal = l; 239 } 240 241 244 public void setShortaVal(short[] ses) { 245 shortaVal = ses; 246 } 247 248 251 public void setShortVal(short s) { 252 shortVal = s; 253 } 254 255 258 public void setStraVal(String [] strings) { 259 straVal = strings; 260 } 261 262 265 public void setStrVal(String string) { 266 strVal = string; 267 } 268 269 272 public SmallEchoStruct getSturctaVal() { 273 return sturctaVal; 274 } 275 276 279 public SmallEchoStruct getSturctVal() { 280 return sturctVal; 281 } 282 283 286 public void setSturctaVal(SmallEchoStruct struct) { 287 sturctaVal = struct; 288 } 289 290 293 public void setSturctVal(SmallEchoStruct struct) { 294 sturctVal = struct; 295 } 296 297 } 298 | Popular Tags |