Uses of Class
de.unihalle.informatik.Alida.operator.ALDOperator

Packages that use ALDOperator
de.unihalle.informatik.Alida.dataconverter   
de.unihalle.informatik.Alida.dataio.provider.cmdline Package containing data I/O providers for commandline presenters. 
de.unihalle.informatik.Alida.dataio.provider.swing Package containing data I/O providers for GUIs based on Java Swing. 
de.unihalle.informatik.Alida.dataio.provider.swing.components   
de.unihalle.informatik.Alida.dataio.provider.xmlbeans Package containing data I/O providers for xmlbeans presenters. 
de.unihalle.informatik.Alida.demo Demonstrator package of how to implement and use Alida operators. 
de.unihalle.informatik.Alida.grappa Contains all resources for the graphical programming editor Grappa. 
de.unihalle.informatik.Alida.gui Package containing GUI components for interactive operator selection/control. 
de.unihalle.informatik.Alida.operator Contains the core of Alida, i.e. the operator concept and processing graph stuff. 
de.unihalle.informatik.Alida.operator.events Definitions of Alida events and corresponding reporter and listener interfaces. 
de.unihalle.informatik.Alida.tools Tools for generic operator execution. 
de.unihalle.informatik.Alida.workflows Classes related to workflows in Alida. 
 

Uses of ALDOperator in de.unihalle.informatik.Alida.dataconverter
 

Subclasses of ALDOperator in de.unihalle.informatik.Alida.dataconverter
 class ALDNumberConverter
          Converts numbers.
 class ALDVectorNativeArrayConverter
          Converts 1D arrays of native data types to Vector data types.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.dataio.provider.cmdline
 

Methods in de.unihalle.informatik.Alida.dataio.provider.cmdline with parameters of type ALDOperator
static LinkedList<String> ALDParametrizedClassDataIOCmdline.lookupParameternames(ALDOperator op, String pre)
          Lookup all parameter names of the operator with prefix pre.
 Object ALDParametrizedClassDataIOCmdline.parse(Field field, Class<?> cl, String valueString, ALDOperator op)
          Generic Parser for parametrized classes and ALDOperators.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.dataio.provider.swing
 

Fields in de.unihalle.informatik.Alida.dataio.provider.swing declared as ALDOperator
protected  ALDOperator ALDOperatorDataIOSwing.op
          The operator of this frame, may be abstract!
 

Methods in de.unihalle.informatik.Alida.dataio.provider.swing that return ALDOperator
protected  ALDOperator ALDOperatorDataIOSwing.OperatorConfigWindow.setOperatorParameters(Field field, Class<?> cl)
           
 

Methods in de.unihalle.informatik.Alida.dataio.provider.swing with parameters of type ALDOperator
protected  HashMap<ALDOpParameterDescriptor,String> ALDOperatorDataIOSwing.OperatorConfigWindow.updateOperator(ALDOperator oper)
          Update operator linked to window.
 

Constructors in de.unihalle.informatik.Alida.dataio.provider.swing with parameters of type ALDOperator
ALDOperatorDataIOSwing.OperatorConfigWindow(ALDOperator ops, Class<?> cl, ALDParameterDescriptor descr, boolean editable)
          Default constructor.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.dataio.provider.swing.components
 

Fields in de.unihalle.informatik.Alida.dataio.provider.swing.components declared as ALDOperator
protected  ALDOperator ALDOperatorParameterPanel.operator
          The operator associated with this panel.
 

Methods in de.unihalle.informatik.Alida.dataio.provider.swing.components with parameters of type ALDOperator
 HashMap<ALDOpParameterDescriptor,String> ALDOperatorParameterPanel.setNewOperator(ALDOperator op)
          Sets a new operator for the panel.
 

Constructors in de.unihalle.informatik.Alida.dataio.provider.swing.components with parameters of type ALDOperator
ALDOperatorParameterPanel(ALDOperator op, Parameter.ExpertMode mode, boolean topLevel, ALDSwingValueChangeListener listener)
          Default constructor.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.dataio.provider.xmlbeans
 

Methods in de.unihalle.informatik.Alida.dataio.provider.xmlbeans with parameters of type ALDOperator
static LinkedList<String> ALDParametrizedClassDataIOXmlbeans.lookupParameternames(ALDOperator op, String pre)
          Lookup all parameter names of the operator with prefix pre.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.demo
 

Subclasses of ALDOperator in de.unihalle.informatik.Alida.demo
 class ALDArrayMean
          Operator returning the mean value of an 1D array.
 class ALDArrayMin
          Operator returning the minimum value of an 1D array.
 class ALDArraySum
          Operator returning the sum of an 1D array.
 class ALDCalcMeanArray
          Operator for calculating the mean of given double values.
 class ALDClusterExperiment
          Demo operator to cluster experimental data.
 class ALDDemoOpControllable
          Controllable demo operator for testing interaction.
 class ALDKmeansOp
          Demo operator clustering experimental data using k-means.
 class ALDParameterTester
          Dummy operator class for demo and testing of input parameter types.
 class ALDPCAOp
          Demo operator computing the PCA for experimental data.
 class ALDSummarizeArrayOp
          A abstract summarizing operator taking a 1D array as input and return a summarizing scalar.
 class ALDTransposeMatrix
          Operator for transposing matrices.
 class ApplyToMatrix
          Demo operator to apply a summarizing operation to a 2D array in row or column wise fashion.
 class FilterExperimentalDataOp
          Demo operator to filter experimental data.
 class MatrixSum
          Demo operator to calculate colum or row sums of a 2D array.
 class NormalizeExperimentalDataOp
          Demo operator to normalize experimental data.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.grappa
 

Methods in de.unihalle.informatik.Alida.grappa with parameters of type ALDOperator
protected  void ALDGrappaWorkbenchTab.copyWorkflowNodeLinksOnly(ALDOperator srcOp, com.mxgraph.model.mxCell srcNode, ALDOperator newOp, int posX, int posY)
          Copies only the links of a workflow node to a new node of same type.
protected  ALDOperatorConfigurationFrame ALDGrappaWorkbenchTab.getNewConfigWin(ALDOperator op)
          Generate a new configuration window.
protected  void ALDGrappaWorkbenchTab.handleAddNodeEvent(ALDOperator op, ALDWorkflowNodeID id, int posX, int posY)
          Adds a node to the workflow graph.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.gui
 

Fields in de.unihalle.informatik.Alida.gui declared as ALDOperator
protected  ALDOperator ALDOperatorConfigurationFrame.op
          The operator associated with this frame.
 

Methods in de.unihalle.informatik.Alida.gui that return ALDOperator
 ALDOperator ALDOperatorConfigurationFrame.getOperator()
          Get a reference to the operator object.
 

Methods in de.unihalle.informatik.Alida.gui with parameters of type ALDOperator
protected  ALDOperatorControlFrame ALDOperatorGUIExecutionProxy.getNewConfigWin(ALDOperator op)
          Generate a new configuration window.
protected  void ALDOperatorGUIExecutionProxy.handleAddNodeEvent(ALDOperator op, ALDWorkflowNodeID id)
          Adds a node to the workflow graph.
 void ALDOperatorConfigurationFrame.updateOperator(ALDOperator newOp)
          Updates the configuration window with settings of new operator.
 void ALDOperatorControlFrame.updateOperatorAfterConfigReload(ALDOperator newOp)
          This method takes care of updating the GUI after reloading the operator.
 

Constructors in de.unihalle.informatik.Alida.gui with parameters of type ALDOperator
ALDBatchOperatorResultFrame(ALDOperator op, HashMap<String,ALDBatchRunResultInfo> batchInfoMap, ALDBatchOutputManagerSwing.ProviderInteractionLevel pLevel)
          Constructor.
ALDOperatorConfigurationFrame(ALDOperator _op)
          Constructs a control frame for an operator object.
ALDOperatorControlFrame(ALDOperator _op, ALDOperatorGUIExecutionProxy em)
          Constructs a new control frame for an operator object.
ALDOperatorParamDisplayFrame(ALDOperator operator, ALDDataIOManagerSwing.ProviderInteractionLevel pLevel)
          Constructor.
ALDOperatorResultFrame(ALDOperator operator, ALDDataIOManagerSwing.ProviderInteractionLevel pLevel)
          Constructor.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.operator
 

Subclasses of ALDOperator in de.unihalle.informatik.Alida.operator
 class ALDOperatorControllable
          Operator class with inherent event handling for execution control.
 

Methods in de.unihalle.informatik.Alida.operator that return ALDOperator
 ALDOperator ALDOperatorLocation.createOperator()
          Create an ALDOperator form this location object.
 

Methods in de.unihalle.informatik.Alida.operator that return types with arguments of type ALDOperator
 Class<? extends ALDOperator> ALDOpNode.getOperatorClass()
          Get the class object of the operator represented by this opNode.
 

Methods in de.unihalle.informatik.Alida.operator with parameters of type ALDOperator
 void ALDOpParameterDescriptor.print(PrintStream outfile, ALDOperator op)
          Print this descriptor to outfile.
 

Constructors in de.unihalle.informatik.Alida.operator with parameters of type ALDOperator
ALDOpNode(ALDOperator op, ALDOperator.HidingMode hidingMode)
          Construct an ALDOpNode for the operator op and hidingMode
 

Uses of ALDOperator in de.unihalle.informatik.Alida.operator.events
 

Methods in de.unihalle.informatik.Alida.operator.events that return ALDOperator
 ALDOperator ALDOperatorExecutionProgressEvent.getOriginatingOperator()
           
 

Constructors in de.unihalle.informatik.Alida.operator.events with parameters of type ALDOperator
ALDOperatorExecutionProgressEvent(Object s, String msg, ALDOperator originatingOperator)
          Constructor with message.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.tools
 

Methods in de.unihalle.informatik.Alida.tools that return ALDOperator
protected  ALDOperator ALDOpRunner.getOperator(String opName)
          This method is called to instantiate the ALDOperator.
 

Uses of ALDOperator in de.unihalle.informatik.Alida.workflows
 

Subclasses of ALDOperator in de.unihalle.informatik.Alida.workflows
 class ALDWorkflow
          Class to model a workflow in Alida.
 

Methods in de.unihalle.informatik.Alida.workflows that return ALDOperator
 ALDOperator ALDWorkflowNode.getOperator()
          Returns the operator associated with this node.
 ALDOperator ALDWorkflow.getOperator(ALDWorkflowNodeID nodeId)
          Get the operator associated with nodeId.
 

Methods in de.unihalle.informatik.Alida.workflows with parameters of type ALDOperator
 ALDWorkflowNodeID ALDWorkflow.createNode(ALDOperator op)
          Add a new operator to this workflow.
protected  void ALDWorkflowNode.setOperator(ALDOperator newOp)
          Sets the operator associated with this node.
 void ALDWorkflow.setOperator(ALDWorkflowNodeID nodeId, ALDOperator newOp)
          Set the operator associated with nodeId.
 

Constructors in de.unihalle.informatik.Alida.workflows with parameters of type ALDOperator
ALDWorkflowNode(ALDWorkflow parentWorkflow, ALDOperator op)
          Create a node
ALDWorkflowNode(ALDWorkflow parentWorkflow, ALDOperator op, boolean isInteriorShadowNode)
          Create a node
 



Copyright © 2010–2014 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.