KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > java > project > ChangePackageViewTypeAction


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.java.project;
21
22 import java.awt.event.ActionEvent JavaDoc;
23 import java.awt.event.ActionListener JavaDoc;
24 import javax.swing.AbstractAction JavaDoc;
25 import javax.swing.JMenu JavaDoc;
26 import javax.swing.JMenuItem JavaDoc;
27 import javax.swing.JRadioButtonMenuItem JavaDoc;
28 import org.openide.awt.Mnemonics;
29 import org.openide.util.NbBundle;
30 import org.openide.util.actions.Presenter;
31
32 /**
33  * Popup menu in Projects tab permitting you to change the package view type.
34  * @author Jesse Glick
35  */

36 public final class ChangePackageViewTypeAction extends AbstractAction JavaDoc implements Presenter.Popup {
37     
38     public ChangePackageViewTypeAction() {}
39
40     public void actionPerformed(ActionEvent JavaDoc e) {
41         assert false : e;
42     }
43
44     public JMenuItem JavaDoc getPopupPresenter() {
45         JMenu JavaDoc menu = new JMenu JavaDoc();
46         Mnemonics.setLocalizedText(menu, NbBundle.getMessage(ChangePackageViewTypeAction.class, "LBL_change_package_type"));
47         menu.add(createChoice(JavaProjectSettings.TYPE_PACKAGE_VIEW, NbBundle.getMessage(ChangePackageViewTypeAction.class, "ChangePackageViewTypeAction_list")));
48         menu.add(createChoice(JavaProjectSettings.TYPE_TREE, NbBundle.getMessage(ChangePackageViewTypeAction.class, "ChangePackageViewTypeAction_tree")));
49         return menu;
50     }
51     
52     private JMenuItem JavaDoc createChoice(final int type, String JavaDoc label) {
53         JRadioButtonMenuItem JavaDoc item = new JRadioButtonMenuItem JavaDoc();
54         Mnemonics.setLocalizedText(item, label);
55         item.setSelected(JavaProjectSettings.getPackageViewType() == type);
56         item.addActionListener(new ActionListener JavaDoc() {
57             public void actionPerformed(ActionEvent JavaDoc e) {
58                 JavaProjectSettings.setPackageViewType(type);
59             }
60         });
61         return item;
62     }
63     
64 }
65
Popular Tags