本文整理汇总了Java中org.pentaho.di.trans.debug.StepDebugMeta.setRowCount方法的典型用法代码示例。如果您正苦于以下问题:Java StepDebugMeta.setRowCount方法的具体用法?Java StepDebugMeta.setRowCount怎么用?Java StepDebugMeta.setRowCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.pentaho.di.trans.debug.StepDebugMeta
的用法示例。
在下文中一共展示了StepDebugMeta.setRowCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getStepDebugMeta
import org.pentaho.di.trans.debug.StepDebugMeta; //导入方法依赖的package包/类
/**
* Grab the step debugging information from the dialog.
* Store it in our private map
*/
private void getStepDebugMeta() {
int index = wSteps.getSelectionIndex();
if (previousIndex>=0)
{
// Is there anything on the composite to save yet?
//
if (wComposite.getChildren().length==0) return;
StepMeta stepMeta = transDebugMeta.getTransMeta().getStep(previousIndex);
StepDebugMeta stepDebugMeta = new StepDebugMeta(stepMeta);
stepDebugMeta.setCondition(condition);
stepDebugMeta.setPausingOnBreakPoint(wPauseBreakPoint.getSelection());
stepDebugMeta.setReadingFirstRows(wFirstRows.getSelection());
stepDebugMeta.setRowCount(Const.toInt(wRowCount.getText(), -1));
stepDebugMetaMap.put(stepMeta, stepDebugMeta);
}
previousIndex = index;
}
示例2: getStepDebugMeta
import org.pentaho.di.trans.debug.StepDebugMeta; //导入方法依赖的package包/类
/**
* Grab the step debugging information from the dialog. Store it in our private map
*/
private void getStepDebugMeta() {
int index = wSteps.getSelectionIndex();
if ( previousIndex >= 0 ) {
// Is there anything on the composite to save yet?
//
if ( wComposite.getChildren().length == 0 ) {
return;
}
StepMeta stepMeta = transDebugMeta.getTransMeta().getStep( previousIndex );
StepDebugMeta stepDebugMeta = new StepDebugMeta( stepMeta );
stepDebugMeta.setCondition( condition );
stepDebugMeta.setPausingOnBreakPoint( wPauseBreakPoint.getSelection() );
stepDebugMeta.setReadingFirstRows( wFirstRows.getSelection() );
stepDebugMeta.setRowCount( Const.toInt( wRowCount.getText(), -1 ) );
stepDebugMetaMap.put( stepMeta, stepDebugMeta );
}
previousIndex = index;
}