sub_arctic.input
Class object_holder

java.lang.Object
  |
  +--sub_arctic.input.object_holder

public class object_holder
extends java.lang.Object

Simple object to encapsulate a reference to another object. This class is used simulate full pass-by-reference when needed (i.e., to allow object parameters to be modified and returned by a method).


Field Summary
 java.lang.Object obj
          The Object we encapsulate a reference to.
 
Constructor Summary
object_holder(java.lang.Object o)
          Constructor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

obj

public java.lang.Object obj
The Object we encapsulate a reference to.
Constructor Detail

object_holder

public object_holder(java.lang.Object o)
Constructor.