KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > versioning > system > cvss > ui > actions > status > StatusAction


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.versioning.system.cvss.ui.actions.status;
21
22 import org.netbeans.modules.versioning.system.cvss.FileInformation;
23 import org.netbeans.modules.versioning.system.cvss.util.Utils;
24 import org.netbeans.modules.versioning.system.cvss.util.Context;
25 import org.netbeans.modules.versioning.system.cvss.ui.actions.AbstractSystemAction;
26 import org.netbeans.modules.versioning.system.cvss.ui.syncview.CvsSynchronizeTopComponent;
27 import org.openide.nodes.Node;
28
29 import java.awt.event.ActionEvent JavaDoc;
30 import java.awt.*;
31
32 /**
33  * Opens the Versioning window.
34  *
35  * @author Maros Sandor
36  */

37 public class StatusAction extends AbstractSystemAction {
38     
39     private static final int enabledForStatus = FileInformation.STATUS_MANAGED & ~FileInformation.STATUS_NOTVERSIONED_EXCLUDED;
40     
41     protected String JavaDoc getBaseName(Node [] activatedNodes) {
42         return "CTL_MenuItem_Status"; // NOI18N
43
}
44
45     protected int getFileEnabledStatus() {
46         return enabledForStatus;
47     }
48
49     public void performCvsAction(Node[] nodes) {
50         CvsSynchronizeTopComponent stc = CvsSynchronizeTopComponent.getInstance();
51         stc.setContext(null);
52         stc.open();
53
54         Context ctx = Utils.getCurrentContext(nodes);
55
56         stc.setContentTitle(getContextDisplayName(nodes));
57         stc.setContext(ctx);
58         stc.requestActive();
59         stc.performRefreshAction();
60     }
61
62     protected boolean asynchronous() {
63         return false;
64     }
65
66 }
67
Popular Tags