- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.pentaho.ui.xul.components.XulMenuList
类的一些代码示例,展示了XulMenuList
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XulMenuList
类的具体详情如下:
包路径:org.pentaho.ui.xul.components.XulMenuList
类名称:XulMenuList
暂无
代码示例来源:origin: pentaho/pentaho-kettle
@SuppressWarnings( { "unchecked", "rawtypes" } )
public void selectDatabase( XulMenuList wConnection, String name ) {
wConnection.setSelectedItem( wConnection );
}
代码示例来源:origin: pentaho/pentaho-kettle
DatabaseInterface databaseInterface = meta.getDatabaseInterface();
if ( databaseInterface instanceof GenericDatabaseMeta ) {
( (GenericDatabaseMeta) databaseInterface).setDatabaseDialect( databaseDialectList.getValue() );
代码示例来源:origin: pentaho/pentaho-kettle
databaseDialectList.setElements( databaseDialects );
DatabaseInterface databaseInterface = meta.getDatabaseInterface();
if ( databaseInterface instanceof GenericDatabaseMeta ) {
databaseDialectList.setSelectedItem( ( (GenericDatabaseMeta) databaseInterface).getDatabaseDialect() );
代码示例来源:origin: pentaho/data-access
public void setFactTable( JoinTableModel factTable ) {
List<JoinTableModel> tables = new ArrayList<JoinTableModel>();
tables.addAll( this.factTables.getElements() );
if ( factTable != null ) {
this.factTables.setSelectedIndex( tables.indexOf( factTable.getName() ) );
}
}
代码示例来源:origin: pentaho/modeler
@Bindable
public void setSelectedTimeLevelType( TimeRole selectedTimeLevelType ) {
TimeRole oldTimeLevelType = this.getSelectedTimeLevelType();
if ( selectedTimeLevelType == null ) {
selectedTimeLevelType = TimeRole.DUMMY;
}
this.selectedTimeLevelType = selectedTimeLevelType;
getNode().setDataRole( selectedTimeLevelType );
List<String> formatsList = selectedTimeLevelType.getFormatsList();
String value = getTimeLevelFormat();
int selectedIndex = formatsList.indexOf( value );
timeLevelFormatList.setElements( formatsList );
if ( selectedIndex == -1 ) {
if ( value == null ) {
value = "";
}
timeLevelFormatList.setValue( value );
} else {
timeLevelFormatList.setSelectedIndex( selectedIndex );
}
firePropertyChange( "selectedTimeLevelType", oldTimeLevelType, selectedTimeLevelType );
}
代码示例来源:origin: pentaho/pentaho-kettle
@SuppressWarnings( { "rawtypes", "unchecked" } )
public void addDatabases( XulMenuList wConnection, Class<? extends DatabaseInterface> databaseType ) {
List<String> databases = new ArrayList<String>();
for ( int i = 0; i < transMeta.nrDatabases(); i++ ) {
DatabaseMeta ci = transMeta.getDatabase( i );
if ( databaseType == null || ci.getDatabaseInterface().getClass().equals( databaseType ) ) {
databases.add( ci.getName() );
}
}
wConnection.setElements( databases );
}
代码示例来源:origin: pentaho/data-access
public String targetToSource( String target ) {
Collection<String> encodings = encodingTypeMenuList.getElements();
if ( target != null && !encodings.contains( target ) ) {
encodings.add( target );
encodingTypeMenuList.setElements( encodings );
}
return target;
}
};
代码示例来源:origin: pentaho/data-access
public void resetSelectedDatasource() {
datatypeMenuList.setSelectedIndex( 0 );
}
代码示例来源:origin: pentaho/data-access
public void success( List schemaValues ) {
schemas.removePropertyChangeListener( schemaSelection );
joinGuiModel.setSchemas( schemaValues );
//processAvailableTables(connection, schemaValues.size() > 0 ? schemaValues.get(0).toString() : null);
schemas.addPropertyChangeListener( schemaSelection );
}
} );
代码示例来源:origin: pentaho/data-access
private void selectDataSourceMenuList( IWizardStep activatingWizardStep, int index ) {
if ( datatypeMenuList.getElements().size() > 0
&& index != -1
&& activeDatasource != null ) {
if ( activeDatasource.getId().equals( "NONE" ) ) {
this.datatypeMenuList.setSelectedIndex( 0 );
} else {
if ( activeDatasource.getId().equals( "CSV" ) ) {
this.datatypeMenuList.setSelectedIndex( 1 );
} else {
if ( activeDatasource.getId().equals( "MULTI-TABLE-DS" ) ) {
this.datatypeMenuList.setSelectedIndex( 3 );
} else {
if ( activeDatasource.getId().equals( "SQL-DS" ) ) {
this.datatypeMenuList.setSelectedIndex( 2 );
}
}
}
}
}
}
代码示例来源:origin: pentaho/modeler
geoRoles.add( dummyGeoRole );
geoRoles.addAll( workspace.getGeoContext() );
geoList.setElements( geoRoles );
timeRoles.clear();
timeRoles.addAll( TimeRole.getAllRoles() );
timeLevelTypeList.setElements( timeRoles );
代码示例来源:origin: pentaho/data-access
public void success( List schemaValues ) {
schemas.removePropertyChangeListener( schemaSelection );
joinGuiModel.setSchemas( schemaValues );
schemas.addPropertyChangeListener( schemaSelection );
fetchTables();
}
} );
代码示例来源:origin: pentaho/big-data-plugin
protected void setSelectedItemForEachMenu() {
getXulMenu( XUL_EC2_ROLE ).setSelectedItem( getJobEntry().getEc2Role() );
getXulMenu( XUL_EMR_ROLE ).setSelectedItem( getJobEntry().getEmrRole() );
getXulMenu( XUL_MASTER_INSTANCE_TYPE ).setSelectedItem( getJobEntry().getMasterInstanceType() );
getXulMenu( XUL_SLAVE_INSTANCE_TYPE ).setSelectedItem( getJobEntry().getSlaveInstanceType() );
}
代码示例来源:origin: pentaho/big-data-plugin
private int fetchValue( XulMenuList<?> menulist ) {
int result = -1;
if ( menulist != null && menulist.getValue() != null ) {
result = ValueMeta.getType( menulist.getValue() );
}
return result;
}
代码示例来源:origin: pentaho/big-data-plugin
(XulMenuList<?>) getXulDomContainer().getDocumentRoot().getElementById( "output-value-fieldname" );
if ( ( outKeyFieldnames != null ) && ( outKeyFieldnames.getElements().size() > 0 ) ) {
outKeyFieldnames.setSelectedIndex( 0 );
if ( ( outValueFieldnames != null ) && ( outValueFieldnames.getElements().size() > 0 ) ) {
outValueFieldnames.setSelectedIndex( 0 );
代码示例来源:origin: pentaho/data-access
encodingTypeMenuList.setElements( ENCODINGS );
代码示例来源:origin: pentaho/big-data-plugin
public void selectNamedCluster( String configName ) {
@SuppressWarnings( "unchecked" )
XulMenuList<NamedCluster> namedConfigMenu =
(XulMenuList<NamedCluster>) container.getDocumentRoot().getElementById( "named-clusters" );
for ( NamedCluster nc : getNamedClusters() ) {
if ( configName != null && configName.equals( nc.getName() ) ) {
namedConfigMenu.setSelectedItem( nc );
}
}
}
代码示例来源:origin: pentaho/big-data-plugin
@Override
public void onAccept() {
metaMapper.setOutKeyFieldname( outKeyFieldnames.getValue() );
metaMapper.setOutValueFieldname( outValueFieldnames.getValue() );
if ( !workingStepname.equals( stepname ) ) {
stepname = workingStepname;
baseStepMeta.setChanged();
}
metaMapper.saveMeta( (HadoopExitMeta) baseStepMeta );
dispose();
}
代码示例来源:origin: pentaho/big-data-plugin
protected void initializeEc2RoleSelection() {
@SuppressWarnings( "unchecked" )
XulMenuList<String> ec2RoleMenu = getXulMenu( XUL_EC2_ROLE );
String selectedEc2Role = getJobEntry().getEc2Role();
ec2RoleMenu.setSelectedItem( selectedEc2Role );
}
代码示例来源:origin: pentaho/data-access
protected void fetchTables() {
showWaitingDialog();
IDatabaseConnection connection = ( (MultiTableDatasource) parentDatasource ).getConnection();
processAvailableTables( connection, schemas.getValue() );
}
我刚刚安装了 songbird:它有一个很棒的用户界面。然后,我读到它是用 Mozilla Firefox 的核心 XUL 制作的。 好的,但我不明白:Songbird 是 Web 界面后面的桌面界面
我试图了解更彻底地学习 XUL 是否值得。 如果您有过中等复杂项目的经验(例如独立应用程序而不是 Firefox 扩展),您能告诉我您的经验吗? 我特别担心 XUL 框架本身不支持的功能。有两种可能性
简而言之:有什么方法可以找到 xul 应用程序的当前目录完整路径吗? 详细解释: 我想在 xul 浏览器应用程序中打开一些 html 文件。应该从 xul 应用程序以编程方式设置 html 文件的路径
在 Xul 中有没有比以下方法更简单的居中标签的方法? 最佳答案 是的。使用盒装通过 the pack attribute .
我熟悉客户端和服务器端的网络编程,我想扩展我的知识,以便能够编写一些桌面程序。 我的问题是我不太熟悉管理小部件的桌面方式。据我了解,在典型的桌面程序中,小部件有自己的生命,相互发送信号并通过回调对信号
我是 clean GUI 的 friend 。不幸的是,出于某种原因我需要覆盖“chrome://global/skin”样式表。 什么是最好的方法,将不同的基于操作系统的样式表实现到 xul 文档中
我束手无策,这可能很简单。基本上我有这个代码: var menuitem = document.getElementById('mymenuitem'); alert(menuitem); alert
我有一个我认为有用的 xul 应用程序,我想部署它。目标平台为Linux;我相信它也可以在 Windows/OSX 上运行,但尚未测试。部署此应用程序的最佳方式是什么? 使用 xpi 包并要求用户单独
我可以用LESS和Xul? 有没有人已经一起使用过它们? 最佳答案 我还没有看到任何人使用它,但没有什么能阻止你尝试。 LESS 只是一个预处理器,它输出 CSS 文件,因此您可能会发现的问题类型应该
是否可以更改显示在 XUL 元素中的制表符 (\t) 字符(当前为 8 个字符)的长度? 请注意,我想避免用空格替换 TAB。 最佳答案 CSS 2.1 规范指定制表符呈现为 8 个空格的宽度。 (
我有一个函数可以从 xul 文件(比如说 tree.xul)中获取所选复选框的值。在另一个 XUL 文件中有一个文本框,我想在其中传递所选复选框的值(标签值)(比如说 textbox.xul)。 最初
我计划为专有系统设计一个应用程序XUL & XPCOM。所以我决定使用 C/C++ 但作为这个领域的初学者我该如何开始开发我找不到一个好的开始指南。如果能给一些链接就好了和书籍。我还想知道如何防止用户
我最近接手了一个基于 XUL 的项目(独立,使用 xulrunner) - 但是我无法让它正常运行。 当我尝试使用命令行 ( xulrunner.exe ../application.ini -jsc
我的 XULRunner 应用程序有一个名为“Show Recordings”的按钮。按下它应该会导致 Windows 资源管理器为用户打开文件夹。我怎样才能做到这一点? 我在文件 I/O 文档中找不
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
您好,我想在 Firefox 3 中创建侧边栏,但不知道如何操作。 我在 MDC ( https://developer.mozilla.org/en/Creating_a_Firefox_sideb
我可以访问一个网站,该网站有一个简单的按钮(我不拥有该网站,也无权访问源代码)来下载文档。我正在使用下面的代码来执行它,它似乎工作正常但有问题 目标 我要下载文件 将文件数据发布到另一个站点 问题 有
在Delphi 2009应用程序中使用xulrunner(gecko sdk)v1.9.1.4127浏览器 它成功运行并打开了请求的页面,但是...没有图像!另外,在日志中,我可以看到,该服务器已将所
给定 仅应用了我的 CSS 定义中的部分样式。样式规则出现在 DOM 检查器中,但有些似乎被忽略。 这是样式定义,其中包含有关哪些类型的规则有效以及哪些类型被忽略的注释。 .ATKButton{
我尝试使用以下代码在运行时使用 vboxes 元素填充 hbox 元素: Xul 代码: Javascript代码: this.canvasContainer = document.getEl
我是一名优秀的程序员,十分优秀!