1 16 17 package org.apache.axis.holders; 18 19 import org.apache.axis.types.UnsignedByte; 20 21 import javax.xml.rpc.holders.Holder ; 22 23 27 public final class UnsignedByteHolder implements Holder { 28 29 30 public UnsignedByte value; 31 32 35 public UnsignedByteHolder() { 36 } 37 38 43 public UnsignedByteHolder(UnsignedByte value) { 44 this.value = value; 45 } 46 } 47 48 | Popular Tags |