01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * 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-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19: package org.netbeans.modules.bpel.nodes;
20:
21: import org.netbeans.modules.bpel.editors.api.nodes.NodeType;
22: import org.netbeans.modules.bpel.model.api.Import;
23: import org.netbeans.modules.bpel.editors.api.nodes.actions.ActionType;
24: import org.openide.nodes.Children;
25: import org.openide.util.Lookup;
26:
27: /**
28: *
29: * @author Vitaly Bychkov
30: * @version 7 April 2006
31: *
32: */
33: public class ImportWsdlNode extends ImportNode {
34:
35: public ImportWsdlNode(Import reference, Children children,
36: Lookup lookup) {
37: super (reference, children, lookup);
38: }
39:
40: public ImportWsdlNode(Import reference, Lookup lookup) {
41: super (reference, lookup);
42: }
43:
44: public NodeType getNodeType() {
45: return NodeType.IMPORT_WSDL;
46: }
47:
48: @Override
49: public boolean canCopy() {
50: return true;
51: }
52:
53: @Override
54: public boolean canCut() {
55: return false;
56: }
57:
58: protected ActionType[] getActionsArray() {
59: return new ActionType[] { ActionType.OPEN_IN_EDITOR,
60: ActionType.SEPARATOR, ActionType.ADD_PROPERTY_TO_WSDL,
61: ActionType.ADD_PROPERTY_ALIAS_TO_WSDL,
62: ActionType.SEPARATOR, ActionType.REMOVE,
63: ActionType.SEPARATOR, ActionType.PROPERTIES };
64: }
65: }
|