KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > javacore > jmiimpl > javamodel > ImportClassImpl


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 package org.netbeans.modules.javacore.jmiimpl.javamodel;
20
21 import org.netbeans.jmi.javamodel.Import;
22 import org.netbeans.jmi.javamodel.ImportClass;
23 import org.netbeans.jmi.javamodel.MultipartId;
24 import org.netbeans.mdr.persistence.StorageException;
25 import org.netbeans.mdr.storagemodel.StorableBaseObject;
26 import org.netbeans.mdr.storagemodel.StorableClass;
27 import org.netbeans.mdr.storagemodel.StorableObject;
28 import org.netbeans.mdr.util.DebugException;
29
30 /**
31  *
32  * @author Martin Matula
33  */

34 public abstract class ImportClassImpl extends SemiPersistentClass implements ImportClass {
35     /** Creates a new instance of PackageClassImpl */
36     public ImportClassImpl(StorableClass s) {
37         super(s);
38     }
39     
40     public Import createImport(java.lang.String JavaDoc name, MultipartId identifier, boolean isStatic, boolean isOnDemand) {
41         ImportImpl i = create(name, identifier, isStatic, isOnDemand, null);
42         i.setNew();
43         return i;
44     }
45     
46     public Import createImport() {
47         ImportImpl i = create(null, null, false, false, null);
48         i.setNew();
49         return i;
50     }
51     
52     ImportImpl create(String JavaDoc name, MultipartId identifier, boolean isStatic, boolean isOnDemand ,ResourceImpl parent) {
53         try {
54             // [TODO] better unify immediate package and class proxy
55
StorableBaseObject s = _getDelegate();
56             DeferredObject o = new DeferredObject(null, s.getMdrStorage(), s.getImmediatePackageId(), s.getOutermostPackageId(), s.getMetaObject(), (StorableClass) s, parent == null ? null : (StorableObject) parent._getDelegate());
57             ImportImpl result = (ImportImpl) _getRepository().getHandler(o);
58             result.setData(name, isOnDemand, isStatic, identifier);
59             return result;
60         } catch (StorageException e) {
61             throw new DebugException();
62         }
63     }
64 }
65
Popular Tags