org.pentaho.di.ui.core.widget.TableView.setLayoutData()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(135)

本文整理了Java中org.pentaho.di.ui.core.widget.TableView.setLayoutData()方法的一些代码示例,展示了TableView.setLayoutData()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TableView.setLayoutData()方法的具体详情如下:
包路径:org.pentaho.di.ui.core.widget.TableView
类名称:TableView
方法名:setLayoutData

TableView.setLayoutData介绍

暂无

代码示例

代码示例来源:origin: pentaho/pentaho-kettle

fdGrid.right = new FormAttachment( 100, 0 );
fdGrid.bottom = new FormAttachment( wReload, -Const.MARGIN * 3 );
wGrid.setLayoutData( fdGrid );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, 0 );
fdFields.bottom = new FormAttachment( 100, -50 );
rulesControl.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

topicsTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, 0 );
fdFields.bottom = new FormAttachment( 100, 0 );
wInfoSteps.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, 0 );
fdFields.bottom = new FormAttachment( 100, 0 );
wTargetSteps.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

propertiesTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, -Const.MARGIN );
fdFields.bottom = new FormAttachment( wGet, -Const.MARGIN );
wFields.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, 0 );
fdFields.bottom = new FormAttachment( 100, 0 );
wParameters.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.bottom = new FormAttachment( wOK, -2 * margin );
wFields.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

propertiesTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

sslTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

fdServers.right = new FormAttachment( 100, -Const.MARGIN );
fdServers.bottom = new FormAttachment( wTestCl, -Const.MARGIN );
wServers.setLayoutData( fdServers );

代码示例来源:origin: pentaho/pentaho-kettle

fdServers.right = new FormAttachment( 100, -Const.MARGIN );
fdServers.bottom = new FormAttachment( 100, -Const.MARGIN );
wSettings.setLayoutData( fdServers );

代码示例来源:origin: pentaho/pentaho-kettle

fieldsTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

fieldsTable.setLayoutData( fdData );

代码示例来源:origin: pentaho/pentaho-kettle

fdFields.right = new FormAttachment( 100, 0 );
fdFields.bottom = new FormAttachment( 100, -50 );
wFields.setLayoutData( fdFields );

代码示例来源:origin: pentaho/pentaho-kettle

formData.right = new FormAttachment( this.wGetLU, -factory.getMargin() );
formData.bottom = new FormAttachment( FORM_ATTACHMENT_OFFSET, FORM_ATTACHMENT_FACTOR * factory.getMargin() );
this.wReturn.setLayoutData( formData );

代码示例来源:origin: pentaho/pentaho-kettle

fdFilter.right = new FormAttachment( 100, 0 );
fdFilter.bottom = new FormAttachment( 100, 0 );
wFilter.setLayoutData( fdFilter );

代码示例来源:origin: pentaho/pentaho-kettle

fdFilter.right = new FormAttachment( 100, 0 );
fdFilter.bottom = new FormAttachment( 100, 0 );
wFilter.setLayoutData( fdFilter );

代码示例来源:origin: pentaho/pentaho-kettle

fdPackages.top = new FormAttachment( wLocale, Const.MARGIN );
fdPackages.bottom = new FormAttachment( 100, 0 );
wPackages.setLayoutData( fdPackages );
wPackages.setSortable( false );

相关文章