1 5 26 package org.jboss.test.webservice.exception._arrays; 27 28 29 public class IntArray { 30 private int[] value; 31 32 public IntArray() { 33 } 34 35 public IntArray(int[] sourceArray) { 36 value = sourceArray; 37 } 38 39 public void fromArray(int[] sourceArray) { 40 this.value = sourceArray; 41 } 42 43 public int[] toArray() { 44 return value; 45 } 46 47 public int[] getValue() { 48 return value; 49 } 50 51 public void setValue(int[] value) { 52 this.value = value; 53 } 54 } 55 | Popular Tags |