Uses of Interface
jigcell.compare.IReadableDataSource

Packages that use IReadableDataSource
jigcell.compare   
jigcell.compare.cellcycle   
jigcell.compare.compare2   
jigcell.compare.contrib   
jigcell.compare.data   
jigcell.compare.impl   
jigcell.compare.objective   
jigcell.compare.tests   
jigcell.compare.transform   
jigcell.compare.ui   
jigcell.compare.views   
 

Uses of IReadableDataSource in jigcell.compare
 

Subinterfaces of IReadableDataSource in jigcell.compare
 interface IDataGenerator
          This interface is implemented by classes that wish to provide data to the comparator.
 interface IEditableDataGenerator
          This interface is implemented by classes that wish to store data for the comparator.
 interface IProgrammableDataGenerator
          A data generator that can derive its value from some programmatic evaluation.
 

Uses of IReadableDataSource in jigcell.compare.cellcycle
 

Classes in jigcell.compare.cellcycle that implement IReadableDataSource
 class BuddingYeastPhenotypeObjective
          Measures the difference between two budding yeast phenotypes.
 class BuddingYeastScanTransform
          Computes the phenotype of a budding yeast mutant from a time course of concentrations.
 class GenericPhenotypeObjective
          Measures the difference between two generic phenotypes.
 class GenericScanTransform
          Computes the phenotype of a generic mutant from a time course of concentrations.
 class JigCellRunManagerTransform
          Uses the JigCell Run Manager to execute a simulation.
 class WildtypeScanTransform
          Quickly scans a time course to determine the mass at division and cycle time.
 

Uses of IReadableDataSource in jigcell.compare.compare2
 

Methods in jigcell.compare.compare2 with parameters of type IReadableDataSource
 void Compare2.loadSet(IReadableDataSource source)
          Loads the data for the view from some external source.
 void Compare2.loadSetDirect(IReadableDataSource source, java.lang.String name)
          Loads the data for the view from some external source without user prompting.
 void Compare2.loadThreshold(IReadableDataSource source)
          Loads the data for the view from some external source.
 void Compare2.loadThresholdDirect(IReadableDataSource source)
          Loads the data for the view from some external source without user prompting.
 

Constructors in jigcell.compare.compare2 with parameters of type IReadableDataSource
Compare2.SetReadHelper(IReadableDataSource readSource, java.lang.String name)
          Creates a new reading helper thread.
Compare2.ThresholdReadHelper(IReadableDataSource readSource)
          Creates a new reading helper thread.
 

Uses of IReadableDataSource in jigcell.compare.contrib
 

Classes in jigcell.compare.contrib that implement IReadableDataSource
 class DispatchedTransformHelper
          Methods for reducing the amount of work to make a transform.
 class DispatchedTransformTemplate
          A DESCRIPTION OF YOUR CLASS.
 class ObjectiveHelper
          Methods for reducing the amount of work to make an objective function.
 class ObjectiveTemplate
          A DESCRIPTION OF YOUR CLASS.
 class TransformHelper
          Methods for reducing the amount of work to make a transform.
 class TransformTemplate
          A DESCRIPTION OF YOUR CLASS.
 

Uses of IReadableDataSource in jigcell.compare.data
 

Classes in jigcell.compare.data that implement IReadableDataSource
 class DataGenerator
          A default implementation of DataGenerator.
 class EditableDataGenerator
          Implementation of DataGenerator that supports editing the generator fields.
 class ProgrammableDataGenerator
          A data generator type whose value is determined programmatically, usually with some kind of interface for controlling the program action.
 

Uses of IReadableDataSource in jigcell.compare.impl
 

Classes in jigcell.compare.impl that implement IReadableDataSource
 class ClipboardDataSource
          A generic transfer agent for a source of data that supports reading and writing to a clipboard.
 class FileDataSource
          A generic transfer agent for a source of data that supports reading and writing to a file.
 class RawFileDataSource
          A transfer agent that supports reading and writing data to a regular file.
 class XMLFileDataSource
          A transfer agent that supports reading and writing data to a file using XML persistence.
 

Uses of IReadableDataSource in jigcell.compare.objective
 

Subinterfaces of IReadableDataSource in jigcell.compare.objective
 interface IDimensionWeightObjective
          A data generator supporting the concept of editable dimension weights.
 interface IElementWeightObjective
          A data generator supporting the concept of editable element weights.
 interface IInterpolationObjective
          A data generator supporting the concept of data interpolation.
 interface IObjective
          A DataGenerator that takes a functional expression and a collection of data to produce an element.
 interface IRelationalObjective
          A data generator supporting the concept of relational comparisons.
 

Classes in jigcell.compare.objective that implement IReadableDataSource
 class BooleanRelationalObjective
          A generator whose function is the result of a boolean relation.
 class MetricObjective
          A FunctionalDataGenerator whose function is based upon a metric.
 class MinkowskiObjective
          A generator whose function is a Lebesgue p-norm.
 class Objective
          Implementation of DataGenerator whose associated element is a function result.
 class ScriptEvaluationObjective
          Executes a user provided script when evaluated.
 class WOSSObjective
          A generator whose function is a weighted orthogonal sum of squares.
 

Uses of IReadableDataSource in jigcell.compare.tests
 

Classes in jigcell.compare.tests that implement IReadableDataSource
 class ConstantDataSource
          A data source that returns a constant value.
static class MethodDispatcherTests.DispatchedTransform
          Test transform for dispatching.
 

Fields in jigcell.compare.tests declared as IReadableDataSource
protected  IReadableDataSource ElementBenchmark.source
          Source to load from
 

Methods in jigcell.compare.tests with parameters of type IReadableDataSource
protected  void Benchmark.loadInView(IDataEditorTab view, IReadableDataSource source)
          Loads data in a view.
protected  void SystemTests.waitForLoad(Compare compare, java.lang.String property, IDataEditorTab tab, IReadableDataSource source)
          Waits for a data source to load in a tab.
 

Uses of IReadableDataSource in jigcell.compare.transform
 

Subinterfaces of IReadableDataSource in jigcell.compare.transform
 interface IResultantTransform
          Indicates that this transform represents a result of potential interest.
 interface ITransform
          A DataGenerator that performs a part of a transform evaluation.
 interface ITransformContainer
          A transform that can manage a collection of other transforms.
 

Classes in jigcell.compare.transform that implement IReadableDataSource
 class BoxTransformContainer
          A compositon of statements that acts as single transform.
 class ConstantTransform
          Transform for testing and use as a stub.
 class ExtremaTestTransform
          A transform that tests whether a sequence would be passed by a band-pass filter.
 class FileTransform
          A transform that tracks a file.
 class InputTransform
          Allows selection of a transform to create a transform chain.
 class ReadFromFileTransform
          A transform that reads data from a file.
 class ScriptEvaluationTransform
          Executes a user provided script when evaluated.
 class SelectColumnsTransform
          A transform that selects a set of columns out of an existing generator.
 class Transform
          An indvidual statement of a transform as a part of a sequence of steps.
 class TransformContainer
          A collection of transforms that combine to compute a result.
 class TransformEvaluationTransform
          A transform that evaluates another named transform.
 class WriteToFileTransform
          A transform that writes data to a file.
 

Uses of IReadableDataSource in jigcell.compare.ui
 

Fields in jigcell.compare.ui declared as IReadableDataSource
protected  IReadableDataSource DataEditorPanelTab.ReadHelper.readSource
          Data source to read from
 

Methods in jigcell.compare.ui with parameters of type IReadableDataSource
 void IDataEditorTab.load(IReadableDataSource source)
          Loads the data for the view from some external source.
 void DataEditorPanelTab.load(IReadableDataSource source)
          Loads the data for the view from some external source.
 void IDataEditorTab.loadDirect(IReadableDataSource source)
          Loads the data for the view from some external source without user prompting.
 void DataEditorPanelTab.loadDirect(IReadableDataSource source)
          Loads the data for the view from some external source without user prompting.
 

Constructors in jigcell.compare.ui with parameters of type IReadableDataSource
DataEditorPanelTab.ReadHelper(IReadableDataSource readSource)
          Creates a new reading helper thread.
 

Uses of IReadableDataSource in jigcell.compare.views
 

Methods in jigcell.compare.views with parameters of type IReadableDataSource
 void ProgrammableDataGeneratorEditor.loadSet(IReadableDataSource source)
          Loads the data for the view from some external source.
 void ProgrammableDataGeneratorEditor.loadSetDirect(IReadableDataSource source)
          Loads the data for the view from some external source without user prompting.
 

Constructors in jigcell.compare.views with parameters of type IReadableDataSource
ProgrammableDataGeneratorEditor.SetReadHelper(IReadableDataSource readSource)
          Creates a new reading helper thread.