001    package org.hackystat.projectbrowser.page.projects;
002    
003    import org.apache.wicket.markup.html.panel.Panel;
004    
005    /**
006     * Panel to show the help information for project editing.
007     * 
008     * @author Shaoxuan Zhang
009     * @author Randy Cox
010     * 
011     */
012    public class ProjHelpPanel extends Panel {
013      /** Support serialization. */
014      private static final long serialVersionUID = 1L;
015    
016      /**
017       * Constructor for panel.
018       * 
019       * @param id the wicket component id.
020       */
021      public ProjHelpPanel(String id) {
022        super(id);
023      }
024    }