Uses of Interface
org.cishell.framework.data.Data

Packages that use Data
org.cishell.app.service.datamanager Provides interfaces for the CIShell Data Manager Service. 
org.cishell.app.service.scheduler Provides interfaces for the CIShell Scheduler Service. 
org.cishell.framework.algorithm Provides interfaces required for creating CIShell algorithms. 
org.cishell.framework.data Provides interfaces required for creating Data objects. 
org.cishell.service.conversion Provides interfaces for the CIShell Data Conversion Service. 
 

Uses of Data in org.cishell.app.service.datamanager
 

Methods in org.cishell.app.service.datamanager that return Data
 Data[] DataManagerService.getAllData()
          Returns all of the Data objects loaded into the manager
 Data[] DataManagerService.getSelectedData()
          Returns The Data objects that have been selected in the manager
 

Methods in org.cishell.app.service.datamanager with parameters of type Data
 void DataManagerService.addData(Data data)
          Adds a Data object to the manager
 void DataManagerAdapter.dataAdded(Data data, String label)
           
 void DataManagerListener.dataAdded(Data data, String label)
          Notifies that a Data object has been added to the associated DataManagerService
 void DataManagerAdapter.dataLabelChanged(Data data, String label)
           
 void DataManagerListener.dataLabelChanged(Data data, String label)
          Notifies that a Data object has had its label changed
 void DataManagerAdapter.dataRemoved(Data data)
           
 void DataManagerListener.dataRemoved(Data data)
          Notifies that a Data object has been removed from the associated DataManagerService
 void DataManagerAdapter.dataSelected(Data[] data)
           
 void DataManagerListener.dataSelected(Data[] data)
          Notifies that a set of data objects have been selected in the associated DataManagerService
 String DataManagerService.getLabel(Data data)
          Returns the label for a stored Data object
 void DataManagerService.removeData(Data data)
          Removes a Data object from the manager
 void DataManagerService.setLabel(Data data, String label)
          Set the label to be used for the Data object.
 void DataManagerService.setSelectedData(Data[] data)
          Sets which Data objects are selected in the manager.
 

Uses of Data in org.cishell.app.service.scheduler
 

Methods in org.cishell.app.service.scheduler with parameters of type Data
 void SchedulerListener.algorithmFinished(Algorithm algorithm, Data[] createdData)
          Notification that an Algorithm has finished executing
 void SchedulerAdapter.algorithmFinished(Algorithm algorithm, Data[] createdData)
           
 

Uses of Data in org.cishell.framework.algorithm
 

Methods in org.cishell.framework.algorithm that return Data
 Data[] Algorithm.execute()
          Executes and optionally returns a Data array
 

Methods in org.cishell.framework.algorithm with parameters of type Data
 Algorithm AlgorithmFactory.createAlgorithm(Data[] data, Dictionary parameters, CIShellContext context)
          Creates an Algorithm to be executed
 ObjectClassDefinition ParameterMutator.mutateParameters(Data[] data, ObjectClassDefinition parameters)
          Adds, modifies, or removes Algorithm parameters (AttributeDefinitions) from a given ObjectClassDefinition returning either the same (if no changes are made) input or a new, mutated version of the input
 String DataValidator.validate(Data[] data)
          Validates the given data that is proposed to be given to the algorithm.
 

Uses of Data in org.cishell.framework.data
 

Classes in org.cishell.framework.data that implement Data
 class BasicData
          A basic implementation of Data.
 

Uses of Data in org.cishell.service.conversion
 

Methods in org.cishell.service.conversion that return Data
 Data Converter.convert(Data data)
          Uses this Converter to convert the given Data object to a new format.
 Data DataConversionService.convert(Data data, String outFormat)
          Tries to convert a given Data object to the specified output format
 

Methods in org.cishell.service.conversion with parameters of type Data
 Data Converter.convert(Data data)
          Uses this Converter to convert the given Data object to a new format.
 Data DataConversionService.convert(Data data, String outFormat)
          Tries to convert a given Data object to the specified output format
 Converter[] DataConversionService.findConverters(Data data, String outFormat)
          Tries to find all the converters that can be used to transform the given Data object to the specified output format