package com.onaro.sanscreen.client.help; import javax.help.HelpBroker; import javax.help.HelpSet; /** * This interface provides a HelpSet and HelpContextProvider based on classloader and path to a help module's files. * * @author rnoel * */ public interface IHelpModule { /** * @return the HelpSet associated with the module. */ public HelpSet getHelpSet(); /** * @return the HelpBroker associated with the module. */ public HelpBroker getHelpBroker(); /** * * @return the IHelpContextProvider associated with the module. */ public IHelpContextProvider getHelpContextProvider(); }