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

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 1921
7166269ef0f1
parent 0
373ffda63c9a
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset fdbe50121f48

     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  */
    26 package com.sun.tools.internal.xjc.reader.xmlschema.ct;
    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;
    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 {
    50     public boolean isApplicable(XSComplexType ct) {
    51         return ct.getBaseType()==schemas.getAnyType()
    52             &&  !ct.isMixed();  // not mixed
    53     }
    55     public void build(final XSComplexType ct) {
    56         XSContentType contentType = ct.getContentType();
    58         contentType.visit(new XSContentTypeVisitor() {
    59             public void simpleType(XSSimpleType st) {
    60                 builder.recordBindingMode(ct,ComplexTypeBindingMode.NORMAL);
    62                 simpleTypeBuilder.refererStack.push(ct);
    63                 TypeUse use = simpleTypeBuilder.build(st);
    64                 simpleTypeBuilder.refererStack.pop();
    66                 BIProperty prop = BIProperty.getCustomization(ct);
    67                 CPropertyInfo p = prop.createValueProperty("Value",false,ct,use, BGMBuilder.getName(st));
    68                 selector.getCurrentBean().addProperty(p);
    69             }
    71             public void particle(XSParticle p) {
    72                 // determine the binding of this complex type.
    74                 builder.recordBindingMode(ct,
    75                     bgmBuilder.getParticleBinder().checkFallback(p)?FALLBACK_CONTENT:NORMAL);
    77                 bgmBuilder.getParticleBinder().build(p);
    79                 XSTerm term = p.getTerm();
    80                 if(term.isModelGroup() && term.asModelGroup().getCompositor()==XSModelGroup.ALL)
    81                     selector.getCurrentBean().setOrdered(false);
    83             }
    85             public void empty(XSContentType e) {
    86                 builder.recordBindingMode(ct,NORMAL);
    87             }
    88         });
    90         // adds attributes and we are through.
    91         green.attContainer(ct);
    92     }
    94 }

mercurial