本文整理了Java中net.sf.taverna.t2.workbench.helper.Helper.showHelp()
方法的一些代码示例,展示了Helper.showHelp()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.showHelp()
方法的具体详情如下:
包路径:net.sf.taverna.t2.workbench.helper.Helper
类名称:Helper
方法名:showHelp
[英]Show the most suitable help for the specified component.
[中]显示指定组件的最合适帮助。
代码示例来源:origin: net.sf.taverna.t2.ui-activities/interaction-activity-ui
@Override
public void actionPerformed(final ActionEvent arg0) {
Helper.showHelp(panel);
}
});
代码示例来源:origin: net.sf.taverna.t2.ui-impl/configuration-impl
public void actionPerformed(ActionEvent arg0) {
Helper.showHelp(panel);
}
});
代码示例来源:origin: net.sf.taverna.t2.ui-components/report-view
public void actionPerformed(ActionEvent arg0) {
Helper.showHelp(panel);
}
});
代码示例来源:origin: net.sf.taverna.t2.ui-components/data-management-config-ui
public void actionPerformed(ActionEvent arg0) {
Helper.showHelp(panel);
}
});
代码示例来源:origin: net.sf.taverna.t2.ui-activities/component-activity-ui
@Override
public void actionPerformed(ActionEvent arg0) {
showHelp(panel);
}
}));
代码示例来源:origin: net.sf.taverna.t2.ui-impl/httpproxy-config
public void actionPerformed(ActionEvent arg0) {
Helper.showHelp(panel);
}
});
代码示例来源:origin: net.sf.taverna.t2.ui-api/contextual-views-api
public void actionPerformed(ActionEvent e) {
Helper.showHelp(ActivityConfigurationDialog.this.panel);
}});
代码示例来源:origin: net.sf.taverna.t2.ui-api/helper-api
/**
* Show the help most associated with the specific component within the container.
*
* @param rootpanecontainer
* @param c
*/
static void showHelpWithinContainer(
final RootPaneContainer rootpanecontainer, final Component c) {
getInstance();
showHelp(c);
}
代码示例来源:origin: net.sf.taverna.t2.workbench/helper
/**
* Show the help most associated with the specific component within the container.
*
* @param rootpanecontainer
* @param c
*/
static void showHelpWithinContainer(
final RootPaneContainer rootpanecontainer, final Component c) {
getInstance();
if ((dialog == null) || !dialog.getOwner().equals(rootpanecontainer)) {
if (dialog != null) {
dialog.setVisible(false);
oldSize = dialog.getSize();
logger.info("Size of dialog was x=" + oldSize.width + " y="
+ oldSize.height);
}
if (dialogMap.containsKey(rootpanecontainer)) {
dialog = dialogMap.get(rootpanecontainer);
initializeDialog(dialog);
} else {
dialog = createDialog(rootpanecontainer);
}
}
showHelp(c);
}
内容来源于网络,如有侵权,请联系作者删除!