KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sample > registry > model > impl > RegistryModelImpl


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.sample.registry.model.impl;
20
21 import java.util.Set JavaDoc;
22 import javax.xml.namespace.QName JavaDoc;
23 import org.netbeans.modules.xml.xam.ComponentUpdater;
24 import org.netbeans.modules.xml.xam.ModelSource;
25 import org.netbeans.modules.xml.xam.dom.AbstractDocumentModel;
26 import org.sample.registry.model.Registry;
27 import org.sample.registry.model.RegistryCommon;
28 import org.sample.registry.model.RegistryComponent;
29 import org.sample.registry.model.RegistryComponentFactory;
30 import org.sample.registry.model.RegistryModel;
31 import org.w3c.dom.Element JavaDoc;
32
33 public class RegistryModelImpl extends AbstractDocumentModel<RegistryComponent> implements RegistryModel {
34     private RegistryComponentFactory factory;
35     private RegistryCommon registry;
36     
37     public RegistryModelImpl(ModelSource source) {
38         super(source);
39         factory = new RegistryComponentFactoryImpl(this);
40     }
41     
42     public RegistryCommon getRootComponent() {
43         return registry;
44     }
45
46     protected ComponentUpdater<RegistryComponent> getComponentUpdater() {
47         return new SyncUpdateVisitor();
48     }
49
50     public RegistryComponent createComponent(RegistryComponent parent, Element JavaDoc element) {
51         return getFactory().create(element, parent);
52     }
53
54     public RegistryCommon createRootComponent(Element JavaDoc root) {
55         RegistryCommon newRegistry = (RegistryCommon) getFactory().create(root, null);
56         if (newRegistry != null) {
57             registry = newRegistry;
58         }
59         return newRegistry;
60     }
61
62     public RegistryComponentFactory getFactory() {
63         return factory;
64     }
65     
66     public Set JavaDoc<QName JavaDoc> getQNames() {
67         return RegistryQNames.getMappedQNames();
68     }
69         
70 }
71
Popular Tags