KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * SearchHistoryAction.java
3  *
4  * Created on 14 June 2006, 15:14
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.Action;
13
14 /**
15  *
16  * @author peter
17  */

18 public class SearchHistoryAction extends Action{
19     
20     /** "Subversion" menu item. */
21     public static final String JavaDoc SVN_ITEM = "Subversion";
22             
23     /** "SEARCH HISTORY" menu item. */
24     public static final String JavaDoc SEARCH_HISTORY_ITEM = "Search History";
25     
26     /** Creates a new instance of SEARCH HISTORY */
27     public SearchHistoryAction() {
28         super(SVN_ITEM + "|" + SEARCH_HISTORY_ITEM, SVN_ITEM + "|" + SEARCH_HISTORY_ITEM);
29     }
30 }
31
Popular Tags