source: ether_megapoli/trunk/service/implementation/gov2/noaa/pmel/sgt/LayerStack.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.5 KB
Line 
1/*
2 * $Id: LayerStack.java,v 1.8 2003/09/15 22:05:41 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;
14
15import java.awt.Container;
16import java.awt.Graphics;
17/**
18 * <code>LayerStack</code> is used to manage a group of layers together.
19 * @since 2.x
20 */
21public class LayerStack extends Container implements LayerControl {
22    public LayerStack() {
23        setLayout(new StackedLayout());
24    }
25  public void setPane(AbstractPane pane) {
26    /**@todo Implement this gov.noaa.pmel.sgt.LayerControl method*/
27    throw new java.lang.UnsupportedOperationException("Method setPane() not yet implemented.");
28  }
29  public void draw(Graphics g) {
30    /**@todo Implement this gov.noaa.pmel.sgt.LayerControl method*/
31    throw new java.lang.UnsupportedOperationException("Method draw() not yet implemented.");
32  }
33  public void drawDraggableItems(Graphics g) {
34    /**@todo Implement this gov.noaa.pmel.sgt.LayerControl method*/
35    throw new java.lang.UnsupportedOperationException("Method drawDraggableItems() not yet implemented.");
36  }
37  public String getId() {
38    return getName();
39  }
40}
Note: See TracBrowser for help on using the repository browser.