本文整理了Java中net.sf.taverna.t2.workbench.helper.Helper.showID()
方法的一些代码示例,展示了Helper.showID()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.showID()
方法的具体详情如下:
包路径:net.sf.taverna.t2.workbench.helper.Helper
类名称:Helper
方法名:showID
[英]Show in the current dialog the entry (if any) corresponding to the specified id.
[中]在当前对话框中显示与指定id对应的条目(如果有)。
代码示例来源:origin: net.sf.taverna.t2.ui-api/helper-api
/**
* Display the default home page help.
*
* @param e
*/
public static void displayDefaultHelp(AWTEvent e) {
showID("home");
}
代码示例来源:origin: net.sf.taverna.t2.workbench/helper
/**
* Display the default home page help.
*
* @param e
*/
public static void displayDefaultHelp(AWTEvent e) {
showID("home");
}
代码示例来源:origin: net.sf.taverna.t2.ui-exts/retry-ui
@Override
public void actionPerformed(ActionEvent e) {
Helper.showID(RetryConfigureAction.class.getCanonicalName());
}};
代码示例来源:origin: net.sf.taverna.t2.ui-exts/loop-ui
@Override
public void actionPerformed(ActionEvent e) {
Helper.showID(LoopConfigureAction.class.getCanonicalName());
}};
代码示例来源:origin: net.sf.taverna.t2.ui-api/helper-api
/**
* Show the most suitable help for the specified component.
*
* @param c
*/
public static void showHelp(Component c) {
showID(HelpCollator.getHelpID(c));
}
代码示例来源:origin: net.sf.taverna.t2.workbench/helper
/**
* Show the most suitable help for the specified component.
*
* @param c
*/
public static void showHelp(Component c) {
showID(HelpCollator.getHelpID(c));
}
内容来源于网络,如有侵权,请联系作者删除!