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