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