01: /*
02: * ErdHelpCommand.java
03: *
04: * Created on 14 September 2006, 01:07
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.executequery.actions.othercommands;
11:
12: import org.executequery.actions.helpcommands.HelpCommand;
13:
14: /**
15: * Contextual help for the ERD panel.
16: *
17: * @author Takis Diakoumis
18: * @version $Revision: 1.1 $
19: * @date $Date: 2006/09/13 15:15:37 $
20: */
21: public class ErdHelpCommand extends HelpCommand {
22:
23: /** Creates a new instance of ErdHelpCommand */
24: public ErdHelpCommand() {
25: super ("erd");
26: }
27:
28: }
|