javax.xml.rpc.holders.DoubleHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-api Show documentation
Show all versions of javaee-api Show documentation
Java(TM) EE 7 Specification APIs
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.xml.rpc.holders;
public final class DoubleHolder implements Holder {
public double value;
public DoubleHolder() {
}
public DoubleHolder(double mydouble) {
this.value = mydouble;
}
}