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