Uses of Class
edu.ull.cgunay.plots.Grapher.Data

Packages that use Grapher.Data
edu.ull.cgunay.plots Grapher independent plotting system that allows using external grapher programs to display plots created in Java.  
 

Uses of Grapher.Data in edu.ull.cgunay.plots
 

Subclasses of Grapher.Data in edu.ull.cgunay.plots
 class Grapher.ErrorData
          For errorbar plots.
 class Grapher.PreciseProfileData
          Data structure for generating profile plots.
 class Grapher.ProfileData
          Data structure for generating profile plots, where the precision can be defined as the total number of points on the plot.
 class Grapher.VerticalBar
          For drawing a vertical bar on the x-axis.
 

Fields in edu.ull.cgunay.plots declared as Grapher.Data
(package private)  Grapher.Data[] SuperposedDataPlot.AxisFactory.datas
          Datas to be added to the Axis.
(package private)  Grapher.Data[] AxisTemplate.datas
          Datas to be superposed in this axis.
(package private)  Grapher.Data[] SuperposedDataPlot.datas
           
(package private)  Grapher.Data SingleDataPlot.data
           
(package private)  Grapher.Data MatLab.Axis.data
          Shortcut to the single data.
(package private)  Grapher.Data SimplePlot.data
          The single axis data of this plot
 

Methods in edu.ull.cgunay.plots that return Grapher.Data
 Grapher.Data[] AxisTemplate.getDatas()
          Gets the value of datas
 

Methods in edu.ull.cgunay.plots with parameters of type Grapher.Data
 void AxisTemplate.setDatas(Grapher.Data[] argDatas)
          Sets the value of datas
(package private)  String MatLab.labelString(Grapher.Data plot)
          Returns a proper dataset label statement in MatLab if label available.
 String MatLab.DefaultDataType.plotCommand(Grapher.Data data)
          Process the data for MatLab.
 String MatLab.ImpulseDataType.plotCommand(Grapher.Data data)
          TODO: Unify this with DefaultDataType.
 String MatLab.ErrorDataType.plotCommand(Grapher.Data data)
          TODO: Unify this with DefaultDataType.
(package private)  String MatLab.Axis.getDataPreamble(Grapher.Data data)
          Handle preamble of single data set.
(package private)  void Grapher.Axis.addData(Grapher.Data data)
          Adds a new dataset to the axis.
abstract  String Grapher.DataType.plotCommand(Grapher.Data data)
          Generates the plot command for the grapher for given data.
 

Constructors in edu.ull.cgunay.plots with parameters of type Grapher.Data
SuperposedDataPlot.AxisFactory(Grapher.Data[] datas, HasAxisLabels decor)
          Creates a new AxisFactory instance.
AxisTemplate(Grapher.Data[] datas)
          Takes a dataset to plot.
SuperposedDataPlot(Range range, Grapher.Data[] datas)
          Takes a dataset to plot.
SingleDataPlot(Range range, Grapher.Data data)
          Takes a dataset to plot.