All Packages Class Hierarchy This Package Previous Next Index
Interface edu.wpi.mqp.graphics.jviz.JVizInterface
- public interface JVizInterface
This interface allows the following methods to be called from the GUI
controll on a graph object, not matter which graph it is. This is important
because we can now call the zoom and printing methods as menu options.
All the graphs must implement this interface.
A way of getting around this is by subclassing a graph class into the
Parallel Coordinates Graph, Scatterplot Graphs, etc. This approach was not
taken in this project, but could in the future if it was beneficial to the
design.
- Version:
- 1.0
- Author:
- Matthew C. Jucius
-
getImage()
-
-
getZoomFactor()
-
-
printScreen(JFrame)
-
-
setGraphModified()
-
-
setZoomFactor(double)
-
setZoomFactor
public abstract boolean setZoomFactor(double newZoomFactor)
getZoomFactor
public abstract double getZoomFactor()
printScreen
public abstract boolean printScreen(JFrame frame)
setGraphModified
public abstract void setGraphModified()
getImage
public abstract Image getImage()
All Packages Class Hierarchy This Package Previous Next Index