Available Methods
- addStep ( )
- setName ( )
- addTransHop ( )
- addDatabase ( )
- environmentSubstitute ( )
- getSteps ( )
- findTransHop ( )
- findDatabase ( )
- removeTransHop ( )
- getName ( )
- setUsingThreadPriorityManagment ( )
- addParameterDefinition ( )
- setDescription ( )
- listParameters ( )
- setRepositoryDirectory ( )
- setFilename ( )
- clearChanged ( )
- getPartitionSchemas ( )
- setDatabases ( )
- findStep ( )
- injectVariables ( )
- setChannelLogTable ( )
- setCreatedUser ( )
- getSlaveServers ( )
- setTransformationType ( )
- setMetaStore ( )
- setVariable ( )
- getObjectId ( )
- findPartitionSchema ( )
- setStepLogTable ( )
- getRepository ( )
- setModifiedUser ( )
- setSleepTimeFull ( )
- setSharedObjects ( )
- getStepLogTable ( )
- setClusterSchemas ( )
- setFeedbackShown ( )
- getPrevStepFields ( )
- setTransLogTable ( )
- setPrivateDatabases ( )
- getParameterDescription ( )
- getVariable ( )
- findClusterSchema ( )
- getClusterSchemas ( )
- getTransLogTable ( )
- setInternalKettleVariables ( )
- setTransversion ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.util.Iterator
- org.junit.Before
- org.junit.Assert
- org.apache.commons.lang.StringUtils
- org.eclipse.swt.SWT
- org.eclipse.swt.widgets.Shell
- org.pentaho.di.trans.Trans
- org.pentaho.di.core.exception.KettleException
- org.pentaho.di.core.database.DatabaseMeta
- org.pentaho.di.core.row.ValueMetaInterface
- org.pentaho.di.core.row.RowMetaInterface
- org.pentaho.di.core.exception.KettleStepException
- org.pentaho.di.core.xml.XMLHandler
- org.pentaho.di.core.Const
- org.pentaho.di.trans.step.BaseStepMeta
- org.pentaho.di.trans.step.StepMeta
- org.pentaho.di.core.row.RowMeta
- org.pentaho.di.repository.Repository
- org.pentaho.di.i18n.BaseMessages
- org.pentaho.di.core.variables.VariableSpace
- org.pentaho.di.trans.step.StepInterface
- org.pentaho.di.trans.step.StepMetaInterface
Java Code Examples for org.pentaho.di.trans.TransMeta#setInternalKettleVariables()
The following examples show how to use
org.pentaho.di.trans.TransMeta#setInternalKettleVariables() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractKettleTransformationProducer.java From pentaho-reporting with GNU Lesser General Public License v2.1 | 5 votes |
private Trans prepareTransformation( final DataRow parameters, final DataFactoryContext context, final TransMeta transMeta ) throws EvaluationException, ParseException, KettleException { final FormulaContext formulaContext = new WrappingFormulaContext( context.getFormulaContext(), parameters ); final String[] params = fillArguments( formulaContext ); final Trans trans = new Trans( transMeta ); trans.setArguments( params ); updateTransformationParameter( formulaContext, trans ); transMeta.setInternalKettleVariables(); trans.prepareExecution( params ); return trans; }