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

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

There is a newer version: 1.1.2
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 BooleanHolder implements Holder {
    public boolean value;
    
    public BooleanHolder() {
    }
    
    public BooleanHolder(boolean myboolean) {
        this.value = myboolean;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy