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 job as defined by a JobMeta object.
 class JobMeta
          The definition of a PDI job is represented by a JobMeta object.
 

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 represents the information and operations associated with the concept of a Transformation.
 class TransMeta
          This class defines information about a transformation and offers methods to save and load it from XML or a PDI database repository, as well as methods to alter a transformation by adding/removing databases, steps, hops, etc.
 

Methods in org.pentaho.di.trans with parameters of type NamedParams
 void Trans.copyParametersFrom(NamedParams params)
          Copy parameters from a NamedParams object.
 void TransMeta.copyParametersFrom(NamedParams params)
          Copy parameters from the specified parameters.
 

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)