KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > subversion > operators > actions > RevertAction


1 /*
2  * RevertAction.java
3  *
4  * Created on 18 May 2006, 17:01
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.netbeans.test.subversion.operators.actions;
11
12 import org.netbeans.jellytools.actions.ActionNoBlock;
13
14 /**
15  *
16  * @author peter
17  */

18 public class RevertAction extends ActionNoBlock{
19     
20     /** "Subversion" menu item. */
21     public static final String JavaDoc SVN_ITEM = "Subversion";
22             
23     /** "Revert" menu item. */
24     public static final String JavaDoc REVERT_ITEM = "Revert";
25     
26     /** Creates a new instance of RevertAction */
27     public RevertAction() {
28         super(SVN_ITEM + "|" + REVERT_ITEM, SVN_ITEM + "|" + REVERT_ITEM);
29     }
30     
31 }
32
Popular Tags