net.sf.taverna.t2.workbench.helper.Helper.showID()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(136)

本文整理了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

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

  1. /**
  2. * Display the default home page help.
  3. *
  4. * @param e
  5. */
  6. public static void displayDefaultHelp(AWTEvent e) {
  7. showID("home");
  8. }

代码示例来源:origin: net.sf.taverna.t2.workbench/helper

  1. /**
  2. * Display the default home page help.
  3. *
  4. * @param e
  5. */
  6. public static void displayDefaultHelp(AWTEvent e) {
  7. showID("home");
  8. }

代码示例来源:origin: net.sf.taverna.t2.ui-exts/retry-ui

  1. @Override
  2. public void actionPerformed(ActionEvent e) {
  3. Helper.showID(RetryConfigureAction.class.getCanonicalName());
  4. }};

代码示例来源:origin: net.sf.taverna.t2.ui-exts/loop-ui

  1. @Override
  2. public void actionPerformed(ActionEvent e) {
  3. Helper.showID(LoopConfigureAction.class.getCanonicalName());
  4. }};

代码示例来源:origin: net.sf.taverna.t2.ui-api/helper-api

  1. /**
  2. * Show the most suitable help for the specified component.
  3. *
  4. * @param c
  5. */
  6. public static void showHelp(Component c) {
  7. showID(HelpCollator.getHelpID(c));
  8. }

代码示例来源:origin: net.sf.taverna.t2.workbench/helper

  1. /**
  2. * Show the most suitable help for the specified component.
  3. *
  4. * @param c
  5. */
  6. public static void showHelp(Component c) {
  7. showID(HelpCollator.getHelpID(c));
  8. }

相关文章