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

  1.  
  2. package sub_arctic.input;
  3.  
  4. /** 
  5.  * Input protocol for objects receiving input from the press_inout_drag agent.
  6.  * This agent is a hybrid positional-focus.  It responds to press events
  7.  * over an object, by making that object the inout_drag focus.<p>
  8.  *
  9.  * Note: this adds no new methods to inout_draggable.  We just need the extra
  10.  * interface to differentiate between objects wanting us to handle the press
  11.  * and normal inout_draggable objects.
  12.  *
  13.  * @author Scott Hudson
  14.  */
  15. public interface inout_press_draggable extends inout_draggable {
  16.  
  17.   /* No extra methods over inout_draggable -- we just need to mark objects 
  18.    * using this via the inout_press_draggable interface name.
  19.    */
  20.  
  21. }
  22. /*=========================== COPYRIGHT NOTICE ===========================
  23.  
  24. This file is part of the subArctic user interface toolkit.
  25.  
  26. Copyright (c) 1996 Scott Hudson and Ian Smith
  27. All rights reserved.
  28.  
  29. The subArctic system is freely available for most uses under the terms
  30. and conditions described in 
  31.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  32. and appearing in full in the lib/interactor.java source file.
  33.  
  34. The current release and additional information about this software can be 
  35. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  36.  
  37. ========================================================================*/
  38.