1 19 package jcckit.plot; 20 21 import jcckit.graphic.GraphicalElement; 22 import jcckit.graphic.GraphPoint; 23 24 36 public interface Curve { 37 44 public GraphicalElement getView(); 45 46 51 public GraphicalElement getLegendSymbol(); 52 53 60 public Hint addPoint(GraphPoint point, Hint hintFromPreviousCurve); 61 62 63 public void removeAllPoints(); 64 } 65 | Popular Tags |