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

« back to all changes in this revision

Viewing changes to xml/axi/src/org/netbeans/modules/xml/axi/impl/AXIModelBuilderQuery.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
package org.netbeans.modules.xml.axi.impl;
 
42
 
 
43
import org.netbeans.modules.xml.schema.model.All;
 
44
import org.netbeans.modules.xml.schema.model.AnyAttribute;
 
45
import org.netbeans.modules.xml.schema.model.AnyElement;
 
46
import org.netbeans.modules.xml.schema.model.AttributeGroupReference;
 
47
import org.netbeans.modules.xml.schema.model.AttributeReference;
 
48
import org.netbeans.modules.xml.schema.model.Choice;
 
49
import org.netbeans.modules.xml.schema.model.ComplexContent;
 
50
import org.netbeans.modules.xml.schema.model.ComplexExtension;
 
51
import org.netbeans.modules.xml.schema.model.ElementReference;
 
52
import org.netbeans.modules.xml.schema.model.GlobalAttribute;
 
53
import org.netbeans.modules.xml.schema.model.GlobalAttributeGroup;
 
54
import org.netbeans.modules.xml.schema.model.GlobalComplexType;
 
55
import org.netbeans.modules.xml.schema.model.GlobalElement;
 
56
import org.netbeans.modules.xml.schema.model.GlobalGroup;
 
57
import org.netbeans.modules.xml.schema.model.GroupReference;
 
58
import org.netbeans.modules.xml.schema.model.LocalAttribute;
 
59
import org.netbeans.modules.xml.schema.model.LocalComplexType;
 
60
import org.netbeans.modules.xml.schema.model.LocalElement;
 
61
import org.netbeans.modules.xml.schema.model.Schema;
 
62
import org.netbeans.modules.xml.schema.model.SchemaComponent;
 
63
import org.netbeans.modules.xml.schema.model.Sequence;
 
64
import org.netbeans.modules.xml.schema.model.SimpleContent;
 
65
import org.netbeans.modules.xml.schema.model.SimpleExtension;
 
66
import org.netbeans.modules.xml.schema.model.visitor.DeepSchemaVisitor;
 
67
 
 
68
/**
 
69
 * Helper class that exposes query-like APIs. Various queries can be made
 
70
 * on schema components such as whether or not the a component has any affect
 
71
 * on the AXI model OR whether or not a component can be viewed in the editor.
 
72
 *
 
73
 * @author Samaresh (Samaresh.Panda@Sun.Com)
 
74
 */
 
75
public class AXIModelBuilderQuery extends AbstractModelBuilder {
 
76
    
 
77
    public AXIModelBuilderQuery(AXIModelImpl model) {
 
78
        super(model);
 
79
    }
 
80
    
 
81
    /**
 
82
     * Returns true for all schema components that are viewable,
 
83
     * false otherwise. Not all schema components have corresponding AXI
 
84
     * components and not all AXI components are viewable.
 
85
     */
 
86
    public boolean canView(SchemaComponent schemaComponent) {
 
87
        canView = false;
 
88
        schemaComponent.accept(this);
 
89
        return canView;
 
90
    }
 
91
    
 
92
    /**
 
93
     * Returns true if the schema component has an impact on AXI model,
 
94
     * false otherwise. Not all schema components affects AXI model.
 
95
     */
 
96
    public boolean affectsModel(SchemaComponent schemaComponent) {
 
97
        affectsModel = false;
 
98
        schemaComponent.accept(this);
 
99
        return affectsModel;
 
100
    }
 
101
    
 
102
    public void visit(Schema schema) {
 
103
        affectsModel = true;
 
104
        canView = true;
 
105
    }
 
106
    
 
107
    public void visit(AnyElement schemaComponent) {
 
108
        affectsModel = true;
 
109
        canView = true;
 
110
    }
 
111
    
 
112
    public void visit(AnyAttribute schemaComponent) {
 
113
        affectsModel = true;
 
114
        canView = true;
 
115
    }
 
116
    
 
117
    public void visit(GlobalElement schemaComponent) {
 
118
        affectsModel = true;
 
119
        canView = true;
 
120
    }
 
121
    
 
122
    public void visit(LocalElement component) {
 
123
        affectsModel = true;
 
124
        canView = true;
 
125
    }
 
126
    
 
127
    public void visit(ElementReference component) {
 
128
        affectsModel = true;
 
129
        canView = true;
 
130
    }
 
131
    
 
132
    public void visit(GlobalAttribute schemaComponent) {
 
133
        affectsModel = true;
 
134
        canView = false;
 
135
    }
 
136
    
 
137
    public void visit(LocalAttribute component) {
 
138
        affectsModel = true;
 
139
        canView = true;
 
140
    }
 
141
    
 
142
    public void visit(AttributeReference component) {
 
143
        affectsModel = true;
 
144
        canView = true;
 
145
    }
 
146
    
 
147
    public void visit(Sequence component) {
 
148
        affectsModel = true;
 
149
        canView = true;
 
150
    }
 
151
    
 
152
    public void visit(Choice component) {
 
153
        affectsModel = true;
 
154
        canView = true;
 
155
    }
 
156
    
 
157
    public void visit(All component) {
 
158
        affectsModel = true;
 
159
        canView = true;
 
160
    }
 
161
    
 
162
    public void visit(GlobalGroup schemaComponent) {
 
163
        affectsModel = true;
 
164
        canView = false;
 
165
    }
 
166
    
 
167
    public void visit(GroupReference component) {
 
168
        affectsModel = true;
 
169
        canView = false;
 
170
    }
 
171
    
 
172
    public void visit(GlobalAttributeGroup schemaComponent) {
 
173
        affectsModel = true;
 
174
        canView = false;
 
175
    }
 
176
    
 
177
    public void visit(AttributeGroupReference component) {
 
178
        affectsModel = true;
 
179
        canView = false;
 
180
    }
 
181
    
 
182
    public void visit(GlobalComplexType schemaComponent) {
 
183
        affectsModel = true;
 
184
        canView = true;
 
185
    }
 
186
    
 
187
    public void visit(LocalComplexType component) {
 
188
        affectsModel = true;
 
189
        canView = false;
 
190
    }
 
191
    
 
192
    public void visit(ComplexContent component) {
 
193
        affectsModel = true;
 
194
        canView = false;
 
195
    }
 
196
    
 
197
    public void visit(SimpleContent component) {
 
198
        affectsModel = true;
 
199
        canView = false;
 
200
    }
 
201
    
 
202
    public void visit(SimpleExtension component) {
 
203
        affectsModel = true;
 
204
        canView = false;
 
205
    }
 
206
    
 
207
    public void visit(ComplexExtension component) {
 
208
        affectsModel = true;
 
209
        canView = false;
 
210
    }
 
211
 
 
212
    ////////////////////////////////////////////////////////////////////
 
213
    ////////////////////////// member variables ////////////////////////
 
214
    ////////////////////////////////////////////////////////////////////
 
215
    private boolean affectsModel;
 
216
    private boolean canView;
 
217
}