Package org.eclipse.help.internal

Examples of org.eclipse.help.internal.CommandLink


      }
    }
    if (src instanceof IContext3) {
      ICommandLink[] commands = ((IContext3)src).getRelatedCommands();
      for (int i=0;i<commands.length;++i) {
        appendChild(new CommandLink(commands[i]));
      }
    }
    IHelpResource[] topics = src.getRelatedTopics();
    for (int i=0;i<topics.length;++i) {
      if (topics[i] instanceof ITopic) {
View Full Code Here

TOP

Related Classes of org.eclipse.help.internal.CommandLink

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.