home *** CD-ROM | disk | FTP | other *** search
/ Late Night VRML 2.0 with Java CD-ROM / code.zip / Ch12 / ui / tree / ScrollerInterface.java < prev    next >
Text File  |  1996-12-30  |  916b  |  30 lines

  1. /* file      : ScrollerInterface.java
  2.  * purpose   : provide an interface to get/set scroller values 
  3. *              used from a child component , implemented by parent component
  4.  * author    : Thomas Koch
  5.  * copyright : 1995 , GMD 
  6.  *            (Forschungszentrum Informationstechnik GmbH, FIT.CSCW,
  7.  *             GMD Schloss Birlinghoven, 53754 Sankt Augustin, Germany).
  8.  */
  9.  
  10. package ui.tree;
  11.  
  12. import java.lang.*;
  13. import java.util.*;
  14. import java.awt.*;
  15. import ui.tree.*;
  16.  
  17. public interface ScrollerInterface {
  18.   int getVerticalScrollerVal();
  19.   int getVerticalScrollerVis();
  20.   int getVerticalScrollerMin();
  21.   int getVerticalScrollerMax();
  22.   void setVerticalScrollerValues(int val,int vis,int min,int max);
  23.   int getHorizontalScrollerVal();
  24.   int getHorizontalScrollerVis();
  25.   int getHorizontalScrollerMin();
  26.   int getHorizontalScrollerMax();
  27.   void setHorizontalScrollerValues(int val,int vis,int min,int max);
  28. }
  29.  
  30.