source: ether_statistics/service/implementation/gov/noaa/pmel/sgt/PolarGraph.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 1.4 KB
Line 
1/*
2 * $Id: PolarGraph.java,v 1.4 2002/06/26 23:53:27 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 gov.noaa.pmel.sgt.dm.SGTData;
16
17import java.awt.Graphics;
18import java.awt.Point;
19import java.beans.PropertyChangeEvent;
20
21/**
22 * Description of Class PolarGraph
23 *
24 * @author Donald Denbo
25 * @version $Revision: 1.4 $, $Date: 2002/06/26 23:53:27 $
26 * @since 2.x
27 */
28public class PolarGraph extends Graph implements Cloneable {
29  public PolarGraph() {
30  }
31  public Graph copy() {
32    PolarGraph newGraph;
33    try {
34      newGraph = (PolarGraph)clone();
35    } catch (CloneNotSupportedException e) {
36      newGraph = new PolarGraph();
37    }
38    return (Graph)newGraph;
39  }
40  void draw(Graphics g) {
41    throw new MethodNotImplementedError();
42  }
43  public Object getObjectAt(Point pt) {
44    throw new MethodNotImplementedError();
45  }
46  public SGTData getDataAt(Point pt) {
47    throw new MethodNotImplementedError();
48  }
49
50  public void propertyChange(PropertyChangeEvent evt) {
51  }
52}
53
Note: See TracBrowser for help on using the repository browser.