Uses of Interface
org.pentaho.di.core.parameters.NamedParams

Packages that use NamedParams
org.pentaho.di.core.parameters   
org.pentaho.di.job This package contains the different elements that make up a Job. 
org.pentaho.di.pan This package contains Pan, the batch transformation executor. 
org.pentaho.di.trans This package contains the classes needed to define and execute transformations. 
org.pentaho.di.ui.spoon This package contains the classes needed by Spoon. 
 

Uses of NamedParams in org.pentaho.di.core.parameters
 

Classes in org.pentaho.di.core.parameters that implement NamedParams
 class NamedParamsDefault
          This class is an implementation of NamedParams.
 

Methods in org.pentaho.di.core.parameters with parameters of type NamedParams
 void NamedParams.copyParametersFrom(NamedParams params)
          Copy params to these named parameters (clearing out first).
 void NamedParamsDefault.copyParametersFrom(NamedParams aParam)
           
 

Uses of NamedParams in org.pentaho.di.job
 

Classes in org.pentaho.di.job that implement NamedParams
 class Job
          This class executes a JobInfo object.
 class JobMeta
          Defines a Job and provides methods to load, save, verify, etc.
 

Methods in org.pentaho.di.job with parameters of type NamedParams
 void JobMeta.copyParametersFrom(NamedParams params)
           
 void Job.copyParametersFrom(NamedParams params)
           
 

Uses of NamedParams in org.pentaho.di.pan
 

Constructors in org.pentaho.di.pan with parameters of type NamedParams
CommandLineOption(String option, String description, NamedParams argument, boolean hiddenOption)
          Creates a new "array" command line option.
 

Uses of NamedParams in org.pentaho.di.trans
 

Classes in org.pentaho.di.trans that implement NamedParams
 class Trans
          This class is responsible for the execution of Transformations.
 class TransMeta
          This class defines a transformation and offers methods to save and load it from XML or a PDI database repository.
 

Methods in org.pentaho.di.trans with parameters of type NamedParams
 void Trans.copyParametersFrom(NamedParams params)
           
 void TransMeta.copyParametersFrom(NamedParams params)
           
 

Uses of NamedParams in org.pentaho.di.ui.spoon
 

Methods in org.pentaho.di.ui.spoon with parameters of type NamedParams
 void Spoon.setParametersAsVariablesInUI(NamedParams namedParameters, VariableSpace space)