本文整理汇总了Java中org.pentaho.di.ui.core.widget.LabelTextVar类的典型用法代码示例。如果您正苦于以下问题:Java LabelTextVar类的具体用法?Java LabelTextVar怎么用?Java LabelTextVar使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LabelTextVar类属于org.pentaho.di.ui.core.widget包,在下文中一共展示了LabelTextVar类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: fillIndexGroup
import org.pentaho.di.ui.core.widget.LabelTextVar; //导入依赖的package包/类
private void fillIndexGroup(Composite parentTab) {
wIndexGroup = new Group(parentTab, SWT.SHADOW_NONE);
props.setLook(wIndexGroup);
wIndexGroup.setText(BaseMessages.getString(PKG, "ElasticSearchBulkDialog.IndexGroup.Label"));
FormLayout indexGroupLayout = new FormLayout();
indexGroupLayout.marginWidth = 10;
indexGroupLayout.marginHeight = 10;
wIndexGroup.setLayout(indexGroupLayout);
//Index
wIndex = new LabelTextVar(transMeta, wIndexGroup, BaseMessages.getString(PKG, "ElasticSearchBulkDialog.Index.Label"), BaseMessages.getString(PKG, "ElasticSearchBulkDialog.Index.Tooltip"));
wIndex.addModifyListener(lsMod);
//Type
wType = new LabelTextVar(transMeta, wIndexGroup, BaseMessages.getString(PKG, "ElasticSearchBulkDialog.Type.Label"), BaseMessages.getString(PKG, "ElasticSearchBulkDialog.Type.Tooltip"));
wType.addModifyListener(lsMod);
//Test button
wTest=new Button(wIndexGroup,SWT.PUSH);
wTest.setText(BaseMessages.getString(PKG, "ElasticSearchBulkDialog.TestIndex.Label"));
wTest.setToolTipText(BaseMessages.getString(PKG, "ElasticSearchBulkDialog.TestIndex.Tooltip"));
wTest.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event arg0) {
test(TestType.INDEX);
}
});
Control[] connectionControls = new Control[]{ wIndex, wType };
placeControls(wIndexGroup, connectionControls);
BaseStepDialog.positionBottomButtons(wIndexGroup, new Button[] {wTest}, Const.MARGIN, wType);
fdIndexGroup = new FormData();
fdIndexGroup.left = new FormAttachment(0, Const.MARGIN);
fdIndexGroup.top = new FormAttachment(wStepname, Const.MARGIN);
fdIndexGroup.right = new FormAttachment(100, -Const.MARGIN);
wIndexGroup.setLayoutData(fdIndexGroup);
}
示例2: fillIndexGroup
import org.pentaho.di.ui.core.widget.LabelTextVar; //导入依赖的package包/类
private void fillIndexGroup( Composite parentTab ) {
wIndexGroup = new Group( parentTab, SWT.SHADOW_NONE );
props.setLook( wIndexGroup );
wIndexGroup.setText( BaseMessages.getString( PKG, "ElasticSearchBulkDialog.IndexGroup.Label" ) );
FormLayout indexGroupLayout = new FormLayout();
indexGroupLayout.marginWidth = 10;
indexGroupLayout.marginHeight = 10;
wIndexGroup.setLayout( indexGroupLayout );
// Index
wIndex =
new LabelTextVar( transMeta, wIndexGroup,
BaseMessages.getString( PKG, "ElasticSearchBulkDialog.Index.Label" ),
BaseMessages.getString( PKG, "ElasticSearchBulkDialog.Index.Tooltip" ) );
wIndex.addModifyListener( lsMod );
// Type
wType =
new LabelTextVar( transMeta, wIndexGroup,
BaseMessages.getString( PKG, "ElasticSearchBulkDialog.Type.Label" ),
BaseMessages.getString( PKG, "ElasticSearchBulkDialog.Type.Tooltip" ) );
wType.addModifyListener( lsMod );
// Test button
wTest = new Button( wIndexGroup, SWT.PUSH );
wTest.setText( BaseMessages.getString( PKG, "ElasticSearchBulkDialog.TestIndex.Label" ) );
wTest.setToolTipText( BaseMessages.getString( PKG, "ElasticSearchBulkDialog.TestIndex.Tooltip" ) );
wTest.addListener( SWT.Selection, new Listener() {
public void handleEvent( Event arg0 ) {
test( TestType.INDEX );
}
} );
Control[] connectionControls = new Control[]{ wIndex, wType };
placeControls( wIndexGroup, connectionControls );
BaseStepDialog.positionBottomButtons( wIndexGroup, new Button[]{ wTest }, Const.MARGIN, wType );
fdIndexGroup = new FormData();
fdIndexGroup.left = new FormAttachment( 0, Const.MARGIN );
fdIndexGroup.top = new FormAttachment( wStepname, Const.MARGIN );
fdIndexGroup.right = new FormAttachment( 100, -Const.MARGIN );
wIndexGroup.setLayoutData( fdIndexGroup );
}