01: /*
02: * CommitAction.java
03: *
04: * Created on 15 May 2006, 18:03
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.test.mercurial.operators.actions;
11:
12: import org.netbeans.jellytools.actions.ActionNoBlock;
13:
14: /**
15: *
16: * @author peter
17: */
18: public class CommitAction extends ActionNoBlock {
19:
20: /** "Mercurial" menu item. */
21: public static final String HG_ITEM = "Mercurial";
22:
23: /** "Commit" menu item. */
24: public static final String COMMIT_ITEM = "Commit";
25:
26: /** Creates a new instance of CommitAction */
27: public CommitAction() {
28: super (HG_ITEM + "|" + COMMIT_ITEM, HG_ITEM + "|" + COMMIT_ITEM);
29: }
30:
31: }
|