本文整理汇总了Java中org.pentaho.di.trans.steps.getpreviousrowfield.GetPreviousRowFieldMeta.allocate方法的典型用法代码示例。如果您正苦于以下问题:Java GetPreviousRowFieldMeta.allocate方法的具体用法?Java GetPreviousRowFieldMeta.allocate怎么用?Java GetPreviousRowFieldMeta.allocate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.pentaho.di.trans.steps.getpreviousrowfield.GetPreviousRowFieldMeta
的用法示例。
在下文中一共展示了GetPreviousRowFieldMeta.allocate方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getInfo
import org.pentaho.di.trans.steps.getpreviousrowfield.GetPreviousRowFieldMeta; //导入方法依赖的package包/类
private void getInfo( GetPreviousRowFieldMeta inf ) {
int nrkeys = wFields.nrNonEmpty();
inf.allocate( nrkeys );
if ( log.isDebug() ) {
logDebug( BaseMessages
.getString( PKG, "GetPreviousRowFieldDialog.Log.FoundFields", String.valueOf( nrkeys ) ) );
}
//CHECKSTYLE:Indentation:OFF
for ( int i = 0; i < nrkeys; i++ ) {
TableItem item = wFields.getNonEmpty( i );
inf.getFieldInStream()[i] = item.getText( 1 );
inf.getFieldOutStream()[i] = item.getText( 2 );
}
stepname = wStepname.getText(); // return value
}
示例2: getInfo
import org.pentaho.di.trans.steps.getpreviousrowfield.GetPreviousRowFieldMeta; //导入方法依赖的package包/类
private void getInfo(GetPreviousRowFieldMeta inf) {
int nrkeys = wFields.nrNonEmpty();
inf.allocate(nrkeys);
if(log.isDebug()) log.logDebug(toString(), Messages.getString("GetPreviousRowFieldDialog.Log.FoundFields", String.valueOf(nrkeys))); //$NON-NLS-1$ //$NON-NLS-2$
for (int i = 0; i < nrkeys; i++) {
TableItem item = wFields.getNonEmpty(i);
inf.getFieldInStream()[i] = item.getText(1);
inf.getFieldOutStream()[i] = item.getText(2);
}
stepname = wStepname.getText(); // return value
}
示例3: getInfo
import org.pentaho.di.trans.steps.getpreviousrowfield.GetPreviousRowFieldMeta; //导入方法依赖的package包/类
private void getInfo(GetPreviousRowFieldMeta inf) {
int nrkeys = wFields.nrNonEmpty();
inf.allocate(nrkeys);
if(log.isDebug()) logDebug(BaseMessages.getString(PKG, "GetPreviousRowFieldDialog.Log.FoundFields", String.valueOf(nrkeys))); //$NON-NLS-1$ //$NON-NLS-2$
for (int i = 0; i < nrkeys; i++) {
TableItem item = wFields.getNonEmpty(i);
inf.getFieldInStream()[i] = item.getText(1);
inf.getFieldOutStream()[i] = item.getText(2);
}
stepname = wStepname.getText(); // return value
}