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