All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.rpc.holders.DoubleHolder Maven / Gradle / Ivy

There is a newer version: 8.0.1
Show newest version
/*
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy