Uses of Interface
de.erichseifert.gral.Drawable

Packages that use Drawable
de.erichseifert.gral Main classes. 
de.erichseifert.gral.io.plots Classes for converting instances of Drawable to various file formats. 
de.erichseifert.gral.plots Plot related classes like axis and plot area management. 
de.erichseifert.gral.plots.areas Classes for drawing areas in plots. 
de.erichseifert.gral.plots.axes Classes for managing and drawing axes in plots. 
de.erichseifert.gral.plots.lines Classes for rendering data series connected by lines. 
de.erichseifert.gral.plots.points Classes for rendering point shapes in a plot. 
de.erichseifert.gral.ui User interface classes. 
 

Uses of Drawable in de.erichseifert.gral
 

Classes in de.erichseifert.gral that implement Drawable
 class AbstractDrawable
          Abstract implementation of the Drawable interface.
 class DrawableContainer
          Implementation of Container that is a Drawable itself.
 class Legend
          Abstract class that serves as a basic for any legend in a plot.
 class PlotArea
          Abstract class that represents a canvas for the plot which will be drawn.
 

Methods in de.erichseifert.gral that return types with arguments of type Drawable
 Iterator<Drawable> DrawableContainer.iterator()
           
 

Methods in de.erichseifert.gral with parameters of type Drawable
 void Container.add(Drawable drawable)
          Adds a new component to this container.
 void DrawableContainer.add(Drawable drawable)
           
 void Container.add(Drawable drawable, Object constraints)
          Adds a new component to this container.
 void DrawableContainer.add(Drawable drawable, Object constraints)
           
 Object Container.getConstraints(Drawable drawable)
          Return additional information on component
 Object DrawableContainer.getConstraints(Drawable drawable)
           
 void Container.remove(Drawable drawable)
          Removes a component from this container.
 void DrawableContainer.remove(Drawable drawable)
           
 

Uses of Drawable in de.erichseifert.gral.io.plots
 

Methods in de.erichseifert.gral.io.plots with parameters of type Drawable
 void DrawableWriter.write(Drawable d, OutputStream destination, double width, double height)
          Stores the specified Drawable instance.
 void BitmapWriter.write(Drawable d, OutputStream destination, double width, double height)
           
 void VectorWriter.write(Drawable d, OutputStream destination, double width, double height)
           
 void DrawableWriter.write(Drawable d, OutputStream destination, double x, double y, double width, double height)
          Stores the specified Drawable instance.
 void BitmapWriter.write(Drawable d, OutputStream destination, double x, double y, double width, double height)
           
 void VectorWriter.write(Drawable d, OutputStream destination, double x, double y, double width, double height)
           
 

Uses of Drawable in de.erichseifert.gral.plots
 

Classes in de.erichseifert.gral.plots that implement Drawable
 class BarPlot
          Class that displays data in a bar plot.
 class Label
          Class that draws a label to a specific location.
 class PiePlot
          Class that displays data in a pie plot.
static class PiePlot.PiePlotArea2D
          Class that represents the drawing area of a PiePlot.
 class Plot
          Abstract class that displays data in a plot.
 class XYPlot
          Class that displays data in an two dimensional coordinate system.
static class XYPlot.XYLegend
          Class that displays a legend in an XYPlot.
static class XYPlot.XYPlotArea2D
          Class that represents the drawing area of an XYPlot.
 

Methods in de.erichseifert.gral.plots that return Drawable
 Drawable DataPoint.getDrawable()
          Returns the Drawable which represents this DataPoint2D.
 

Constructors in de.erichseifert.gral.plots with parameters of type Drawable
DataPoint(PointND<Double> position, Drawable drawable, Shape point)
          Creates a new DataPoint object with the specified position, Drawable, and shape.
 

Uses of Drawable in de.erichseifert.gral.plots.areas
 

Methods in de.erichseifert.gral.plots.areas that return Drawable
 Drawable DefaultAreaRenderer2D.getArea(Axis axis, AxisRenderer axisRenderer, Iterable<DataPoint> points)
           
 Drawable AreaRenderer.getArea(Axis axis, AxisRenderer axisRenderer, Iterable<DataPoint> points)
          Returns the graphical representation to be drawn for the specified data points.
 Drawable LineAreaRenderer2D.getArea(Axis axis, AxisRenderer axisRenderer, Iterable<DataPoint> points)
           
 

Uses of Drawable in de.erichseifert.gral.plots.axes
 

Methods in de.erichseifert.gral.plots.axes that return Drawable
 Drawable AxisRenderer.getRendererComponent(Axis axis)
          Returns a component that displays the specified axis.
 Drawable AbstractAxisRenderer2D.getRendererComponent(Axis axis)
           
 

Constructors in de.erichseifert.gral.plots.axes with parameters of type Drawable
Tick(Tick.TickType type, PointND<Double> position, PointND<Double> normal, Drawable drawable, Shape point, String label)
          Creates a new instance with the specified position, normal, Drawable, point and label.
 

Uses of Drawable in de.erichseifert.gral.plots.lines
 

Methods in de.erichseifert.gral.plots.lines that return Drawable
 Drawable LineRenderer.getLine(Iterable<DataPoint> points)
          Returns a graphical representation for the line defined by points.
 Drawable DiscreteLineRenderer2D.getLine(Iterable<DataPoint> points)
           
 Drawable DefaultLineRenderer2D.getLine(Iterable<DataPoint> points)
           
 

Uses of Drawable in de.erichseifert.gral.plots.points
 

Methods in de.erichseifert.gral.plots.points that return Drawable
 Drawable PointRenderer.getPoint(Axis axis, AxisRenderer axisRenderer, Row row)
          Returns the graphical representation to be drawn for the specified data value.
 Drawable DefaultPointRenderer.getPoint(Axis axisY, AxisRenderer axisYRenderer, Row row)
           
 

Uses of Drawable in de.erichseifert.gral.ui
 

Methods in de.erichseifert.gral.ui that return Drawable
 Drawable DrawablePanel.getDrawable()
          Returns the Drawable instance that is displayed by this panel.
 

Constructors in de.erichseifert.gral.ui with parameters of type Drawable
DrawablePanel(Drawable drawable)
          Creates a new DrawablePanel with the specified Drawable.
ExportDialog(Component parent, Drawable drawable)
          Creates a new instance and initializes it with a parent and a drawable component.
InteractivePanel(Drawable drawable)
          Creates a new panel instance and initializes it with a drawable component.
 



Copyright © 2009-2010. All Rights Reserved.