source: ether_megapoli/trunk/service/implementation/gov2/noaa/pmel/sgt/plot/JPlotPane.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: JPlotPane.java,v 1.3 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.JPane;
16import java.util.Vector;
17import gov.noaa.pmel.sgt.LayerStack;
18
19/**
20 * @since 2.x
21 */
22public class JPlotPane extends JPane {
23  /**
24   * @undirected
25   * @link aggregation
26   * @label currentMode
27   */
28  private PlotPaneMode currentMode_;
29
30  /**
31   * @link aggregationByValue
32   * @undirected
33   * @label layerManager
34   */
35  private PlotLayerManager layerManager_;
36
37  /**
38   * @link aggregationByValue
39   * @undirected
40   * @label printManager
41   */
42  private PrintManager printManager_;
43
44  /**
45   * @link aggregationByValue
46   * @undirected
47   * @label dragNDropManager
48   */
49  private DragNDropManager dragNDropManager_;
50
51  /**
52   *@link aggregation
53   *     @associates <{LayerStack}>
54   * @undirected
55   * @supplierCardinality 1..*
56   * @label layerStack
57   */
58  private Vector layerStack_;
59}
Note: See TracBrowser for help on using the repository browser.