KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > wsdl > ui > view > treeeditor > newtype > ImportWSDLNewType


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-2007 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.xml.wsdl.ui.view.treeeditor.newtype;
21
22 import java.io.IOException JavaDoc;
23 import org.netbeans.modules.xml.wsdl.model.Definitions;
24 import org.netbeans.modules.xml.wsdl.model.WSDLComponent;
25 import org.netbeans.modules.xml.wsdl.model.WSDLModel;
26 import org.netbeans.modules.xml.wsdl.ui.netbeans.module.UIUtilities;
27 import org.netbeans.modules.xml.wsdl.ui.view.ImportWSDLCreator;
28 import org.openide.DialogDescriptor;
29 import org.openide.DialogDisplayer;
30 import org.openide.util.NbBundle;
31 import org.openide.util.datatransfer.NewType;
32
33 /**
34  * NewType for importing a WSDL file.
35  *
36  * @author Nathan Fiedler
37  */

38 public class ImportWSDLNewType extends NewType {
39     /** Component in which to create import. */
40     private WSDLComponent component;
41
42     /**
43      * Creates a new instance of ImportWSDLNewType.
44      *
45      * @param component the WSDL component in which to create the import.
46      */

47     public ImportWSDLNewType(WSDLComponent component) {
48         this.component = component;
49     }
50
51     @Override JavaDoc
52     public String JavaDoc getName() {
53         return NbBundle.getMessage(ImportWSDLNewType.class,
54                 "LBL_NewType_ImportWSDL");
55     }
56
57     @Override JavaDoc
58     public void create() throws IOException JavaDoc {
59         // Create the new import with empty attributes.
60
WSDLModel model = component.getModel();
61         Definitions def = model.getDefinitions();
62         model.startTransaction();
63
64         // Create the new import(s).
65
// Note this happens during the transaction, which is unforunate
66
// but supposedly unavoidable.
67
ImportWSDLCreator customizer = new ImportWSDLCreator(def);
68         DialogDescriptor descriptor = UIUtilities.getCreatorDialog(
69                 customizer, NbBundle.getMessage(ImportWSDLNewType.class,
70                 "LBL_NewType_ImportCustomizer"), true);
71         descriptor.setValid(false);
72         Object JavaDoc result = DialogDisplayer.getDefault().notify(descriptor);
73
74         // Creator will have created the import(s) by now.
75
// In either case, end the transaction.
76
model.endTransaction();
77     }
78 }
79
Popular Tags