1 55 56 package org.jboss.axis.holders; 57 58 import org.jboss.axis.types.PositiveInteger; 59 60 import javax.xml.rpc.holders.Holder ; 61 62 65 public final class PositiveIntegerHolder implements Holder  66 { 67 68 71 public PositiveInteger value; 72 73 76 public PositiveIntegerHolder() 77 { 78 } 79 80 85 public PositiveIntegerHolder(PositiveInteger value) 86 { 87 this.value = value; 88 } 89 } 90 91 | Popular Tags |