Package javax.help

Class SwingHelpUtilities

  • All Implemented Interfaces:
    java.beans.PropertyChangeListener, java.util.EventListener

    public class SwingHelpUtilities
    extends java.lang.Object
    implements java.beans.PropertyChangeListener
    Provides a number of utility functions: Support for Beans, mapping from a Bean class to its HelpSet and to its ID. Support for LAF changes. Support for finding localized resources. This class has no public constructor.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static javax.swing.ImageIcon getImageIcon​(java.lang.Class baseClass, java.lang.String image)
      Create an Icon from a given resource.
      void propertyChange​(java.beans.PropertyChangeEvent event)
      The PropertyChange method is used to track changes to LookAndFeel via the "lookAndFeel" property.
      static void setContentViewerUI​(java.lang.String cvUI)
      Set the default ContentViewerUI param cvUI - full class name of the content viewer UI
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SwingHelpUtilities

        public SwingHelpUtilities()
    • Method Detail

      • propertyChange

        public void propertyChange​(java.beans.PropertyChangeEvent event)
        The PropertyChange method is used to track changes to LookAndFeel via the "lookAndFeel" property.
        Specified by:
        propertyChange in interface java.beans.PropertyChangeListener
      • setContentViewerUI

        public static void setContentViewerUI​(java.lang.String cvUI)
        Set the default ContentViewerUI param cvUI - full class name of the content viewer UI
      • getImageIcon

        public static javax.swing.ImageIcon getImageIcon​(java.lang.Class baseClass,
                                                         java.lang.String image)
        Create an Icon from a given resource. This works uisng getResourceAsStream() because several browsers do not correctly implement getResource(). This method may change...