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