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

« back to all changes in this revision

Viewing changes to xml/wsdlui/src/org/netbeans/modules/xml/wsdl/ui/actions/WSDLViewOpenAction.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-2007 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.xml.wsdl.ui.actions;
 
43
 
 
44
import org.netbeans.modules.xml.wsdl.model.Definitions;
 
45
import org.netbeans.modules.xml.wsdl.model.WSDLModel;
 
46
import org.netbeans.modules.xml.wsdl.ui.netbeans.module.WSDLDataObject;
 
47
import org.netbeans.modules.xml.wsdl.ui.netbeans.module.WSDLEditorSupport;
 
48
import org.netbeans.modules.xml.xam.Model;
 
49
import org.netbeans.modules.xml.xam.ui.cookies.ViewComponentCookie;
 
50
import org.openide.cookies.OpenCookie;
 
51
import org.openide.nodes.Node;
 
52
import org.openide.util.HelpCtx;
 
53
import org.openide.util.NbBundle;
 
54
import org.openide.util.actions.NodeAction;
 
55
 
 
56
 
 
57
/**
 
58
 * Opens the WSDLDataObject in the WSDL editor tree view.
 
59
 *
 
60
 * @author Jeri Lockhart
 
61
 */
 
62
public class WSDLViewOpenAction extends NodeAction{
 
63
    /** silence compiler warnings */
 
64
    private static final long serialVersionUID = 1L;
 
65
 
 
66
    @Override
 
67
        protected void performAction(Node[] node) {
 
68
        if (node == null || node[0] == null) {
 
69
            return;
 
70
        }
 
71
        WSDLDataObject sdo = node[0].getLookup().lookup(
 
72
                WSDLDataObject.class);
 
73
        if (sdo != null) {
 
74
            WSDLEditorSupport wes = sdo.getWSDLEditorSupport();
 
75
            ViewComponentCookie svc = sdo.getCookie(
 
76
                    ViewComponentCookie.class);
 
77
            if (svc != null) {
 
78
                WSDLModel model= wes.getModel();
 
79
                Definitions def = null;
 
80
                ViewComponentCookie.View view = ViewComponentCookie.View.STRUCTURE;
 
81
                if (model.getState() ==  Model.State.VALID) {
 
82
                    def = model.getDefinitions();
 
83
                }
 
84
                if (def == null) {
 
85
                    view = ViewComponentCookie.View.SOURCE;
 
86
                }
 
87
                
 
88
                if (wes.getOpenedPanes() == null ||
 
89
                        wes.getOpenedPanes().length == 0) {
 
90
                    svc.view(view, def);
 
91
                } else {
 
92
                    wes.open();
 
93
                }                
 
94
                return;
 
95
            }
 
96
        }
 
97
        // default to open cookie
 
98
        OpenCookie oc = node[0].getCookie(OpenCookie.class);
 
99
        if (oc != null) {
 
100
            oc.open();
 
101
        }
 
102
    }
 
103
 
 
104
    @Override
 
105
        protected boolean enable(Node[] node) {
 
106
        return true;
 
107
    }
 
108
 
 
109
    @Override
 
110
        public String getName() {
 
111
        return NbBundle.getMessage(WSDLViewOpenAction.class,
 
112
                "WSDLViewOpenAction_Name");
 
113
    }
 
114
 
 
115
    @Override
 
116
        public HelpCtx getHelpCtx() {
 
117
        return HelpCtx.DEFAULT_HELP;
 
118
    }
 
119
 
 
120
    @Override
 
121
        protected boolean asynchronous() {
 
122
        return false;
 
123
    }
 
124
}