1 package org.telscenter.pas.beans; 2 3 /*** 4 * @author lwilliams 5 * 6 * @version $Id: IHelp.java 1733 2007-03-12 16:02:15Z laurelwilliams $ 7 * 8 * Provides methods to add help to beans using JavaHelp. See the JavaHelp 9 * User's guide for more information about JavaHelp. 10 * 11 */ 12 public interface IHelp { 13 14 /*** 15 * @return The string help id of for this bean/class. <br/>This help id should 16 * correspond to a "target" string found in a map.jhm file. See the 17 * JavaHelp User's guide for more information about map.jhm. 18 */ 19 public abstract String getHelpId(); 20 21 }