|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Plotter
An interface for all data available plotters. Plotters which implements this interface can be used together with a plotter panel which is automatically created and / or adapted.
Field Summary | |
---|---|
static int |
MULTIPLE_SELECTION
Indicates that multiple values can be selected by the user for a dimension. |
static int |
NO_SELECTION
Indicates that no plot values can be selected by the user. |
static int |
SINGLE_SELECTION
Indicates that only single values can be selected by the user for a dimension. |
Method Summary | |
---|---|
void |
addMouseListener(java.awt.event.MouseListener listener)
Adds a mouse listener to the plotter component. |
void |
addMouseMotionListener(java.awt.event.MouseMotionListener listener)
Adds a mouse motion listener to the plotter component. |
boolean |
canHandleJitter()
Returns true if the plotter can handle jitter settings, i.e. a small random pertubation of data point positions. |
boolean |
canHandleZooming()
Can handle zooming. |
int |
getAxis(int axis)
Returns the data dimension which is used for the given axis or -1 if no axis is used. |
java.lang.String |
getAxisName(int index)
Returns a label for the axis with the given index, e.g. |
javax.swing.Icon |
getIcon(int index)
Returns a small icon for the line type with the given index. |
java.lang.String |
getIdForPos(int x,
int y)
Returns the ID of the object under the mouse cursor if it has an id. |
int |
getInitialZoomFactor()
Returns the initial zoom factor. |
int |
getNumberOfAxes()
Returns the number of axes beside the value dimension, i. e. 1 for a 2D and 2 for a 3D plot. |
javax.swing.JComponent |
getOptionsComponent(int index)
Returns the component of index index for interaction if plotter provides one. |
boolean |
getPlotColumn(int dimension)
Returns true if the given dimension should be plotted. |
java.lang.String |
getPlotName()
Returns the name of the plotting axe. |
javax.swing.JComponent |
getPlotter()
Returns the plotter component. |
PlotterCondition |
getPlotterCondition()
Returns the condition for data tables. |
java.awt.geom.Point2D |
getPositionInDataSpace(java.awt.Point p)
Returns the given position in data space. |
int |
getValuePlotSelectionType()
Returns the selection type for the value axis, i.e. one out of NO_SELECTION, SINGLE_SELECTION, or MULTIPLE_SELECTION. |
boolean |
hasOptionsDialog()
Returns true if this plotter provides an options dialog. |
boolean |
hasSaveImageButton()
Returns true, if plotter has capability to save an image on his own. |
boolean |
isProvidingCoordinates()
Returns true, if plotter provides coordinates to show. |
boolean |
isSaveable()
Indicates if the plotter can save the data. |
void |
save()
Should invoke the saving of the plotted data (file dialog,...). |
void |
setAxis(int plotterAxis,
int dimension)
Maps the given data dimension on the given plotterAxis. |
void |
setDataTable(DataTable dataTable)
Sets the data table for this plotter. |
void |
setDragBounds(int x,
int y,
int w,
int h)
Sets the bounds of the dragging rectangle. |
void |
setDrawRange(double x,
double y,
double w,
double h)
Sets the drawing range in data space. |
void |
setJitter(int jitter)
Sets the amount of Jitter and initiates a repaint. |
void |
setKey(java.lang.String key)
Sets a key text (legend). |
void |
setMousePosInDataSpace(int mouseX,
int mouseY)
Indicates where the mouse is in the plotter component. |
void |
setPlotColumn(int dimension,
boolean plot)
Sets if the given data dimension should be plotted in the value dimension. |
void |
setZooming(int zooming)
Reacts to zoom setting changed. |
void |
showOptionsDialog()
Opens an options dialog. |
Methods inherited from interface edu.udo.cs.yale.datatable.DataTableListener |
---|
dataTableUpdated |
Field Detail |
---|
static final int NO_SELECTION
static final int SINGLE_SELECTION
static final int MULTIPLE_SELECTION
Method Detail |
---|
void setDataTable(DataTable dataTable)
javax.swing.JComponent getPlotter()
PlotterCondition getPlotterCondition()
BasicPlotterCondition
.
javax.swing.Icon getIcon(int index)
int getNumberOfAxes()
java.lang.String getAxisName(int index)
int getValuePlotSelectionType()
boolean canHandleJitter()
void setJitter(int jitter)
boolean canHandleZooming()
void setZooming(int zooming)
int getInitialZoomFactor()
boolean hasOptionsDialog()
void showOptionsDialog()
javax.swing.JComponent getOptionsComponent(int index)
boolean hasSaveImageButton()
boolean isProvidingCoordinates()
java.lang.String getPlotName()
boolean isSaveable()
void save()
void setAxis(int plotterAxis, int dimension)
int getAxis(int axis)
void setPlotColumn(int dimension, boolean plot)
boolean getPlotColumn(int dimension)
void setMousePosInDataSpace(int mouseX, int mouseY)
java.awt.geom.Point2D getPositionInDataSpace(java.awt.Point p)
void setDragBounds(int x, int y, int w, int h)
void setDrawRange(double x, double y, double w, double h)
java.lang.String getIdForPos(int x, int y)
void addMouseMotionListener(java.awt.event.MouseMotionListener listener)
void addMouseListener(java.awt.event.MouseListener listener)
void setKey(java.lang.String key)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |