~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to j2ee/earproject/src/org/netbeans/modules/j2ee/earproject/ui/ModuleNode.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.modules.j2ee.earproject.ui;
 
43
 
 
44
import java.awt.Image;
 
45
import java.util.ArrayList;
 
46
import java.util.List;
 
47
import javax.swing.Action;
 
48
import org.netbeans.api.project.FileOwnerQuery;
 
49
import org.netbeans.api.project.Project;
 
50
import org.netbeans.modules.j2ee.earproject.ProjectPropertyProvider;
 
51
import org.netbeans.modules.j2ee.earproject.ui.actions.OpenModuleProjectAction;
 
52
import org.netbeans.modules.j2ee.earproject.ui.customizer.EarProjectProperties;
 
53
import org.netbeans.modules.j2ee.earproject.ui.customizer.VisualClassPathItem;
 
54
import org.openide.filesystems.FileObject;
 
55
import org.openide.nodes.AbstractNode;
 
56
import org.openide.nodes.Children;
 
57
import org.openide.nodes.Node;
 
58
import org.openide.util.HelpCtx;
 
59
import org.openide.util.NbBundle;
 
60
import org.openide.util.Utilities;
 
61
import org.openide.util.actions.SystemAction;
 
62
 
 
63
/**
 
64
 * Represents one node in the <em>J2EE Modules</em> node in the EAR project's
 
65
 * logical view.
 
66
 *
 
67
 * @author vkraemer
 
68
 * @author Ludovic Champenois
 
69
 */
 
70
public final class ModuleNode extends AbstractNode implements Node.Cookie {
 
71
    
 
72
    /** Package-private for unit tests <strong>only</strong>. */
 
73
    static final String MODULE_NODE_NAME = "module.node"; // NOI18N
 
74
    
 
75
    private static Action[] actions;
 
76
    
 
77
    private final FileObject projectDirectory;
 
78
    private final VisualClassPathItem key;
 
79
    
 
80
    public ModuleNode(final VisualClassPathItem key, final FileObject projectDirectory) {
 
81
        super(Children.LEAF);
 
82
        this.key = key;
 
83
        this.projectDirectory = projectDirectory;
 
84
        setName(ModuleNode.MODULE_NODE_NAME);
 
85
        setDisplayName(key.getCompletePathInArchive());
 
86
        setShortDescription(NbBundle.getMessage(ModuleNode.class, "HINT_ModuleNode"));
 
87
    }
 
88
    
 
89
    // Create the popup menu:
 
90
    @Override
 
91
    public Action[] getActions(boolean context) {
 
92
        if (null == actions) {
 
93
            actions = new Action[] {
 
94
                SystemAction.get(OpenModuleProjectAction.class),
 
95
                SystemAction.get(RemoveAction.class)
 
96
            };
 
97
            getCookieSet().add(this);
 
98
        }
 
99
        return actions;
 
100
    }
 
101
    
 
102
    @Override
 
103
    public Action getPreferredAction() {
 
104
        return SystemAction.get(OpenModuleProjectAction.class);
 
105
    }
 
106
    
 
107
    @Override
 
108
    public Image getIcon(int type) {
 
109
        // XXX the "algorithm" based on the ant property name - in the case of
 
110
        // application client; is little odd. Also the rest is rather unclear.
 
111
        if (key.toString().endsWith("war")) { // NOI18N
 
112
            return Utilities.loadImage("org/netbeans/modules/j2ee/earproject/ui/resources/WebModuleNode.gif");//NOI18N
 
113
        } else if (key.getRaw().indexOf("j2ee-module-car") > 0) { //NOI18N
 
114
            return Utilities.loadImage("org/netbeans/modules/j2ee/earproject/ui/resources/CarModuleNodeIcon.gif");//NOI18N
 
115
        } else {
 
116
            return Utilities.loadImage("org/netbeans/modules/j2ee/earproject/ui/resources/EjbModuleNodeIcon.gif");//NOI18N
 
117
        }
 
118
    }
 
119
    
 
120
    @Override
 
121
    public Image getOpenedIcon(int type){
 
122
        return getIcon( type);
 
123
    }
 
124
    
 
125
    @Override
 
126
    public HelpCtx getHelpCtx() {
 
127
        return HelpCtx.DEFAULT_HELP;
 
128
    }
 
129
    
 
130
    void removeFromJarContent() {
 
131
        List<VisualClassPathItem> newList = new ArrayList<VisualClassPathItem>();
 
132
        Project p = FileOwnerQuery.getOwner(projectDirectory);
 
133
        ProjectPropertyProvider ppp = p.getLookup().lookup(ProjectPropertyProvider.class);
 
134
        EarProjectProperties epp = ppp.getProjectProperties();
 
135
        newList.addAll(epp.getJarContentAdditional());
 
136
        newList.remove(key);
 
137
        epp.put(EarProjectProperties.JAR_CONTENT_ADDITIONAL, newList);
 
138
        epp.store();
 
139
    }
 
140
    
 
141
    public VisualClassPathItem getVCPI() {
 
142
        return key;
 
143
    }
 
144
    
 
145
    // Handle copying and cutting specially:
 
146
    @Override
 
147
    public boolean canCopy() {
 
148
        return false;
 
149
    }
 
150
  
 
151
}