/* * @(#)/SlicerDisplayGraphic.java 1.2 96/03/31 by Andrew Barclay abb@nuccard.eushc.org * * Copyright (c) 1995 Andrew B. Barclay All Rights Reserved. */ import java.awt.Color ; /** * A structure to pass from the SlicerControl to the SlicerDisplay * describing the hashmarks to be displayed by the SlicerDisplay. * * @see SlicerControl * @see SlicerDisplay * * @version 1.2 96/03/31 * @author Andrew Barclay */ class SlicerDisplayGraphic { Color bordercolor ; Color xhashcolor ; double xhashpos ; // 0.0 to 1.0 double xhashwidth ; // 0.0 to 1.0 double xhashlength ; // 0.0 to 1.0 Color yhashcolor ; double yhashpos ; // 0.0 to 1.0 double yhashwidth ; // 0.0 to 1.0 double yhashlength ; // 0.0 to 1.0 }