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