KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * ImportAction.java
3  *
4  * Created on 10 May 2006, 11:46
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 ImportAction extends ActionNoBlock {
19     
20     /** "Versioning" menu item. */
21     public static final String JavaDoc VERSIONING_ITEM = "Versioning";
22     
23     /** "Subversion" menu item. */
24     public static final String JavaDoc SVN_ITEM = "Subversion";
25             
26     /** "Import..." menu item. */
27     public static final String JavaDoc IMPORT_ITEM = "Import";
28     
29     /** Creates a new instance of ImportAction */
30     public ImportAction() {
31         super(VERSIONING_ITEM + "|" + SVN_ITEM + "|" + IMPORT_ITEM, SVN_ITEM + "|" + IMPORT_ITEM);
32     }
33     
34 }
35
Popular Tags