blob: e80e288a290eb69c4e3a2e8d4fb93fea662df0d7 [file] [log] [blame]
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.xml.rpc.holders;
/**
* Holder for <code>float</code>s.
*
* @version 1.0
*/
public final class FloatHolder implements Holder {
/** The <code>byte</code> contained by this holder. */
public float value;
/**
* Make a new <code>FloatHolder</code> with a <code>null</code> value.
*/
public FloatHolder() {}
/**
* Make a new <code>FloatHolder</code> with <code>value</code> as
* the value.
*
* @param value the <code>float</code> to hold
*/
public FloatHolder(float value) {
this.value = value;
}
}