source: ether_megapoli/trunk/service/implementation/gov2/noaa/pmel/sgt/plot/PlotLayerManager.java @ 192

Last change on this file since 192 was 192, checked in by vmipsl, 13 years ago

Servlet _ Contour en cours _ package gov2

File size: 1.4 KB
Line 
1/*
2 * $Id: PlotLayerManager.java,v 1.4 2003/08/22 23:02:39 dwd Exp $
3 *
4 * This software is provided by NOAA for full, free and open release.  It is
5 * understood by the recipient/user that NOAA assumes no liability for any
6 * errors contained in the code.  Although this software is released without
7 * conditions or restrictions in its use, it is expected that appropriate
8 * credit be given to its author and to the National Oceanic and Atmospheric
9 * Administration should the software be included by the recipient as an
10 * element in other product development.
11 */
12 
13package gov.noaa.pmel.sgt.plot;
14
15import gov.noaa.pmel.sgt.AxisTransform;
16import gov.noaa.pmel.sgt.LayerStack;
17import gov.noaa.pmel.sgt.LayerNotFoundException;
18/**
19 * @since 2.x
20 */
21public class PlotLayerManager {
22    public PlotLayerManager(JPlotPane plotPane) {
23        plotPane_ = plotPane;
24    }
25
26  /**
27   *
28   */
29  public void addLayer(PlotLayer layer) {
30  }
31
32  public void removeLayer(int index) throws LayerNotFoundException {
33  }
34
35  public void removeLayer(PlotLayer layer) throws LayerNotFoundException {
36  }
37
38  public void update() {
39  }
40
41  /** @link dependency */
42  /*#LayerStack lnkLayerStack;*/
43
44  /** @link dependency */
45  /*#PlotLayer lnkPlotLayer;*/
46
47  /** @link dependency */
48  /*#AxisTransform lnkAxisTransform;*/
49
50  /** @link dependency */
51  /*#PlotLayerHints lnkPlotLayerHints;*/
52
53  /**
54   * @label plotPane
55   */
56  private JPlotPane plotPane_;
57}
Note: See TracBrowser for help on using the repository browser.