home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / INPUT / OBJECT_H.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.1 KB  |  35 lines

  1.  
  2. package sub_arctic.input;
  3.  
  4. /** 
  5.  * Simple object to encapsulate a reference to another object.  This class 
  6.  * is used simulate full pass-by-reference when needed (i.e., to allow object
  7.  * parameters to be modified and returned by a method).
  8.  *
  9.  * @author Scott Hudson
  10.  */
  11. public class object_holder
  12.   {
  13.     /** The Object we encapsulate a reference to. */
  14.     public Object obj = null;
  15.  
  16.     /** Constructor. */
  17.     public object_holder(Object o) { obj   = o; }
  18.   }
  19. /*=========================== COPYRIGHT NOTICE ===========================
  20.  
  21. This file is part of the subArctic user interface toolkit.
  22.  
  23. Copyright (c) 1996 Scott Hudson and Ian Smith
  24. All rights reserved.
  25.  
  26. The subArctic system is freely available for most uses under the terms
  27. and conditions described in 
  28.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  29. and appearing in full in the lib/interactor.java source file.
  30.  
  31. The current release and additional information about this software can be 
  32. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  33.  
  34. ========================================================================*/
  35.