
javax.xml.rpc.holders.BigDecimalHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-jaxrpc-api_1.1_spec Show documentation
Show all versions of jboss-jaxrpc-api_1.1_spec Show documentation
JSR-101: Java(TM) API for XML-based RPC (JAX-RPC) 1.1
package javax.xml.rpc.holders;
import java.math.BigDecimal;
/** A holder for BigDecimals.
*
* @author [email protected]
*/
public final class BigDecimalHolder implements Holder
{
public BigDecimal value;
public BigDecimalHolder()
{
}
public BigDecimalHolder(BigDecimal value)
{
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy