Package javax.help.plaf

Examples of javax.help.plaf.HelpUI


     * @param navigator The Navigator to explicitly add to the JHelp.
     */
    public void addHelpNavigator(JHelpNavigator navigator) {
  debug("addHelpNavigator("+navigator+")");
  navigators.addElement(navigator);
  HelpUI help = getUI();
  help.addNavigator(navigator);
 
  // force a common model
  navigator.setModel(getModel());
    }
View Full Code Here


  debug("removeHelpNavigator("+navigator+")");
  if (navigator == null) {
      throw new NullPointerException("navigator");
  }
  navigators.removeElement(navigator);
  HelpUI help = getUI();
  help.removeNavigator(navigator);
    }
View Full Code Here

     * @param navigator The navigator
     * @exception throws InvalidNavigatorException if not a one of HELPUI
     *   navigators.
     */
    public void setCurrentNavigator(JHelpNavigator navigator) {
  HelpUI help = getUI();
  help.setCurrentNavigator(navigator);
    }
View Full Code Here

TOP

Related Classes of javax.help.plaf.HelpUI

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.