package freegraph; /** * Listener interface for GraphPlane */ public interface GraphPlaneListener { /** * called when the position of the mouse moves */ public void mousePosMoved(double xPos, double yPos); /** * calles when the axis change */ public void axisChanged(double xMin, double yMin, double xMax, double yMax); }