1 6 package org.jboss.test.webservice.marshalltest._arrays.java.math; 7 8 9 public class BigIntegerArray { 10 private java.math.BigInteger [] value; 11 12 public BigIntegerArray() { 13 } 14 15 public BigIntegerArray(java.math.BigInteger [] sourceArray) { 16 value = sourceArray; 17 } 18 19 public void fromArray(java.math.BigInteger [] sourceArray) { 20 this.value = sourceArray; 21 } 22 23 public java.math.BigInteger [] toArray() { 24 return value; 25 } 26 27 public java.math.BigInteger [] getValue() { 28 return value; 29 } 30 31 public void setValue(java.math.BigInteger [] value) { 32 this.value = value; 33 } 34 } 35 | Popular Tags |