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

Method Index

 o getImage()
 o getZoomFactor()
 o printScreen(JFrame)
 o setGraphModified()
 o setZoomFactor(double)

Methods

 o setZoomFactor
 public abstract boolean setZoomFactor(double newZoomFactor)
 o getZoomFactor
 public abstract double getZoomFactor()
 o printScreen
 public abstract boolean printScreen(JFrame frame)
 o setGraphModified
 public abstract void setGraphModified()
 o getImage
 public abstract Image getImage()

All Packages  Class Hierarchy  This Package  Previous  Next  Index