View Javadoc

1   // Copyright 2004, FreeHEP.
2   package hep.wired.feature;
3   
4   import java.awt.geom.Rectangle2D;
5   
6   import hep.wired.services.Feature;
7   
8   /***
9    * Can calculate a bounding box for the plot.
10   *
11   * @author Mark Donszelmann
12   * @version $Id: HasBoundingBox.java 256 2004-06-07 23:31:10Z duns $
13   */
14  
15  public interface HasBoundingBox extends Feature {
16      
17      public Rectangle2D getBoundingBoxForPlot();
18  }