Ice.Holder Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
package Ice;
/**
* Generic holder class for values that are in- or in-out parameters.
**/
public class Holder
{
/**
* Instantiates the class with the default-initialized value of type T
.
**/
public
Holder()
{
}
/**
* Instantiates the class with the passed value.
*
* @param value The value stored by this holder.
**/
public
Holder(T value)
{
this.value = value;
}
/**
* The T
value stored by this holder.
**/
public T value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy