本文整理汇总了Java中org.pentaho.di.core.database.TeradataDatabaseMeta类的典型用法代码示例。如果您正苦于以下问题:Java TeradataDatabaseMeta类的具体用法?Java TeradataDatabaseMeta怎么用?Java TeradataDatabaseMeta使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TeradataDatabaseMeta类属于org.pentaho.di.core.database包,在下文中一共展示了TeradataDatabaseMeta类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: buildUi
点赞 2
import org.pentaho.di.core.database.TeradataDatabaseMeta; //导入依赖的package包/类
/**
* Build UI.
*/
protected void buildUi() {
final PluginWidgetFactory factory = new PluginWidgetFactory(this.shell, this.transMeta);
factory.setMiddle(this.props.getMiddlePct());
this.buildStepNameLine(factory);
this.buildUseControlFileLine(factory);
this.buildControlFileLine(factory);
this.buildVariableSubstitutionLine(factory);
this.buildFastloadLine(factory);
this.buildLogFileLine(factory);
// connection line
this.wbnConnection = new Button(this.shell, SWT.PUSH);
this.wbeConnection = new Button(this.shell, SWT.PUSH);
this.wlConnection = new Label(this.shell, SWT.RIGHT);
this.wConnection = addConnectionLine(this.shell, this.wLogFile, factory.getMiddle(), factory.getMargin(), this.wlConnection, this.wbnConnection, this.wbeConnection, TeradataDatabaseMeta.class);
this.buildTableLine(factory);
this.buildTruncateTableLine(factory);
this.buildDataFileLine(factory);
this.buildSessionsLine(factory);
this.buildErrorLimitLine(factory);
this.buildFieldTable(factory);
this.buildAscLink(factory);
this.wOK = factory.createPushButton(BaseMessages.getString(PKG, "System.Button.OK"));
this.wCancel = factory.createPushButton(BaseMessages.getString(PKG, "System.Button.Cancel"));
this.wAbout = factory.createPushButton(BaseMessages.getString(PKG, "TeraFastDialog.About.Button"));
setButtonPositions(new Button[] {this.wOK, this.wCancel, this.wAbout}, factory.getMargin(), this.wAscLink);
}
开发者ID:yintaoxue,
项目名称:read-open-source-code,
代码行数:31,
代码来源:TeraFastDialog.java
示例2: buildUi
点赞 2
import org.pentaho.di.core.database.TeradataDatabaseMeta; //导入依赖的package包/类
/**
* Build UI.
*/
protected void buildUi() {
final PluginWidgetFactory factory = new PluginWidgetFactory(this.shell, this.transMeta);
factory.setMiddle(this.props.getMiddlePct());
this.buildStepNameLine(factory);
this.buildUseControlFileLine(factory);
this.buildControlFileLine(factory);
this.buildVariableSubstitutionLine(factory);
this.buildFastloadLine(factory);
this.buildLogFileLine(factory);
// connection line
this.wbwConnection = new Button(this.shell, SWT.PUSH);
this.wbnConnection = new Button(this.shell, SWT.PUSH);
this.wbeConnection = new Button(this.shell, SWT.PUSH);
this.wlConnection = new Label(this.shell, SWT.RIGHT);
this.wConnection = addConnectionLine(this.shell, this.wLogFile, factory.getMiddle(), factory.getMargin(), this.wlConnection, this.wbwConnection, this.wbnConnection, this.wbeConnection, TeradataDatabaseMeta.class);
this.buildTableLine(factory);
this.buildTruncateTableLine(factory);
this.buildDataFileLine(factory);
this.buildSessionsLine(factory);
this.buildErrorLimitLine(factory);
this.buildFieldTable(factory);
this.buildAscLink(factory);
this.wOK = factory.createPushButton(BaseMessages.getString(PKG, "System.Button.OK"));
this.wCancel = factory.createPushButton(BaseMessages.getString(PKG, "System.Button.Cancel"));
this.wAbout = factory.createPushButton(BaseMessages.getString(PKG, "TeraFastDialog.About.Button"));
setButtonPositions(new Button[] {this.wOK, this.wCancel, this.wAbout}, factory.getMargin(), this.wAscLink);
}
开发者ID:jjeb,
项目名称:kettle-trunk,
代码行数:32,
代码来源:TeraFastDialog.java
示例3: buildUi
点赞 2
import org.pentaho.di.core.database.TeradataDatabaseMeta; //导入依赖的package包/类
/**
* Build UI.
*/
protected void buildUi() {
final PluginWidgetFactory factory = new PluginWidgetFactory( this.shell, this.transMeta );
factory.setMiddle( this.props.getMiddlePct() );
this.buildStepNameLine( factory );
this.buildUseControlFileLine( factory );
this.buildControlFileLine( factory );
this.buildVariableSubstitutionLine( factory );
this.buildFastloadLine( factory );
this.buildLogFileLine( factory );
// connection line
this.wbwConnection = new Button( this.shell, SWT.PUSH );
this.wbnConnection = new Button( this.shell, SWT.PUSH );
this.wbeConnection = new Button( this.shell, SWT.PUSH );
this.wlConnection = new Label( this.shell, SWT.RIGHT );
this.wConnection =
addConnectionLine(
this.shell, this.wLogFile, factory.getMiddle(), factory.getMargin(), this.wlConnection,
this.wbwConnection, this.wbnConnection, this.wbeConnection, TeradataDatabaseMeta.class );
this.buildTableLine( factory );
this.buildTruncateTableLine( factory );
this.buildDataFileLine( factory );
this.buildSessionsLine( factory );
this.buildErrorLimitLine( factory );
this.buildFieldTable( factory );
this.buildAscLink( factory );
this.wOK = factory.createPushButton( BaseMessages.getString( PKG, "System.Button.OK" ) );
this.wCancel = factory.createPushButton( BaseMessages.getString( PKG, "System.Button.Cancel" ) );
this.wAbout = factory.createPushButton( BaseMessages.getString( PKG, "TeraFastDialog.About.Button" ) );
setButtonPositions( new Button[] { this.wOK, this.wCancel, this.wAbout }, factory.getMargin(), this.wAscLink );
}
开发者ID:pentaho,
项目名称:pentaho-kettle,
代码行数:35,
代码来源:TeraFastDialog.java