src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/FreshComplexTypeBuilder.java

changeset 0
373ffda63c9a
equal deleted inserted replaced
-1:000000000000 0:373ffda63c9a
1 /*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
27
28 import com.sun.tools.internal.xjc.model.CPropertyInfo;
29 import com.sun.tools.internal.xjc.model.TypeUse;
30 import com.sun.tools.internal.xjc.reader.xmlschema.bindinfo.BIProperty;
31 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.FALLBACK_CONTENT;
32 import static com.sun.tools.internal.xjc.reader.xmlschema.ct.ComplexTypeBindingMode.NORMAL;
33 import com.sun.tools.internal.xjc.reader.xmlschema.BGMBuilder;
34 import com.sun.xml.internal.xsom.XSComplexType;
35 import com.sun.xml.internal.xsom.XSContentType;
36 import com.sun.xml.internal.xsom.XSModelGroup;
37 import com.sun.xml.internal.xsom.XSParticle;
38 import com.sun.xml.internal.xsom.XSSimpleType;
39 import com.sun.xml.internal.xsom.XSTerm;
40 import com.sun.xml.internal.xsom.visitor.XSContentTypeVisitor;
41
42 /**
43 * Builds a complex type that inherits from the anyType complex type.
44 *
45 * @author
46 * Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
47 */
48 final class FreshComplexTypeBuilder extends CTBuilder {
49
50 public boolean isApplicable(XSComplexType ct) {
51 return ct.getBaseType()==schemas.getAnyType()
52 && !ct.isMixed(); // not mixed
53 }
54
55 public void build(final XSComplexType ct) {
56 XSContentType contentType = ct.getContentType();
57
58 contentType.visit(new XSContentTypeVisitor() {
59 public void simpleType(XSSimpleType st) {
60 builder.recordBindingMode(ct,ComplexTypeBindingMode.NORMAL);
61
62 simpleTypeBuilder.refererStack.push(ct);
63 TypeUse use = simpleTypeBuilder.build(st);
64 simpleTypeBuilder.refererStack.pop();
65
66 BIProperty prop = BIProperty.getCustomization(ct);
67 CPropertyInfo p = prop.createValueProperty("Value",false,ct,use, BGMBuilder.getName(st));
68 selector.getCurrentBean().addProperty(p);
69 }
70
71 public void particle(XSParticle p) {
72 // determine the binding of this complex type.
73
74 builder.recordBindingMode(ct,
75 bgmBuilder.getParticleBinder().checkFallback(p)?FALLBACK_CONTENT:NORMAL);
76
77 bgmBuilder.getParticleBinder().build(p);
78
79 XSTerm term = p.getTerm();
80 if(term.isModelGroup() && term.asModelGroup().getCompositor()==XSModelGroup.ALL)
81 selector.getCurrentBean().setOrdered(false);
82
83 }
84
85 public void empty(XSContentType e) {
86 builder.recordBindingMode(ct,NORMAL);
87 }
88 });
89
90 // adds attributes and we are through.
91 green.attContainer(ct);
92 }
93
94 }

mercurial