Services Builder for CICS(R) 3270 Bridge v2.0.0.0

com.attachmate.cicsbridge.ws
Class MutableInt

java.lang.Object
  extended bycom.attachmate.cicsbridge.ws.MutableInt

public final class MutableInt
extends java.lang.Object

Wrapper Class for fundamental type int.


Field Summary
 int m_int
           
 
Constructor Summary
MutableInt()
          Constructor to initialize the instance of the class.
MutableInt(int in_int)
          Constructor to initialize the instance of the class.
 
Method Summary
 byte byteValue()
          casts value to byte.
 int getInt()
          Used to get the value of the instance of the object..
 int intValue()
          To provide an accessor similar to java.lang.Integer.
 void setInt(int in_int)
          Used to set the value of the instance of the object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_int

public int m_int
Constructor Detail

MutableInt

public MutableInt()
Constructor to initialize the instance of the class. The initial int value for the instance of the class is 0.


MutableInt

public MutableInt(int in_int)
Constructor to initialize the instance of the class.

Parameters:
in_int - Initial int value for the instance of the class.
Method Detail

setInt

public void setInt(int in_int)
Used to set the value of the instance of the object.

Parameters:
in_int - int value to set.
Returns:
void

getInt

public int getInt()
Used to get the value of the instance of the object..

Returns:
An int value.

intValue

public int intValue()
To provide an accessor similar to java.lang.Integer.


byteValue

public byte byteValue()
casts value to byte.


Services Builder for CICS(R) 3270 Bridge v2.0.0.0