Package com.adobe.xfa.ut
Class BooleanHolder
java.lang.Object
com.adobe.xfa.ut.BooleanHolder
A mutable holder class to represent a boolean value.
BooleanHolder objects are useful as out and inout parameters.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionInstantiates an BooleanHolder object with the initial value false.BooleanHolder(boolean value) Instantiates an BooleanHolder object with the initial value given. -
Method Summary
-
Field Details
-
value
public boolean valueThe boolean value held by this object.
-
-
Constructor Details
-
BooleanHolder
public BooleanHolder()Instantiates an BooleanHolder object with the initial value false. -
BooleanHolder
public BooleanHolder(boolean value) Instantiates an BooleanHolder object with the initial value given.- Parameters:
value- the initial value.
-