View Javadoc

1   // Copyright 2004, FreeHEP.
2   package hep.wired.heprep.interaction;
3   
4   import hep.wired.services.RecordPlot;
5   
6   /***
7    * Listener for a location.
8    *
9    * @author Mark Donszelmann
10   * @version $Id: LocationListener.java 258 2004-06-08 06:27:49Z duns $
11   */
12  public interface LocationListener {
13  
14      /***
15       * Sets (and fixes) a location.
16       */
17      public void setLocation(RecordPlot plot, int x, int y, boolean xIsFixed, boolean yIsFixed); 
18  }