home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / unuam4cs / slicerdisplaygraphic.java < prev    next >
Encoding:
Java Source  |  1996-08-14  |  755 b   |  31 lines

  1. /*
  2.  * @(#)/SlicerDisplayGraphic.java    1.2 96/03/31 by Andrew Barclay abb@nuccard.eushc.org
  3.  *
  4.  * Copyright (c) 1995 Andrew B. Barclay All Rights Reserved.
  5.  */
  6.  
  7. import java.awt.Color ;
  8.  
  9. /**
  10.  * A structure to pass from the SlicerControl to the SlicerDisplay
  11.  * describing the hashmarks to be displayed by the SlicerDisplay.
  12.  *
  13.  * @see SlicerControl
  14.  * @see SlicerDisplay
  15.  *
  16.  * @version    1.2 96/03/31
  17.  * @author     Andrew Barclay
  18.  */
  19.  
  20. class SlicerDisplayGraphic {
  21.     Color bordercolor ;
  22.     Color xhashcolor ;
  23.     double xhashpos ; // 0.0 to 1.0
  24.     double xhashwidth ; // 0.0 to 1.0
  25.     double xhashlength ; // 0.0 to 1.0
  26.     Color yhashcolor ;
  27.     double yhashpos ; // 0.0 to 1.0
  28.     double yhashwidth ; // 0.0 to 1.0
  29.     double yhashlength ; // 0.0 to 1.0
  30. }
  31.