src/share/jaxws_classes/com/sun/tools/internal/xjc/model/CTypeRef.java

Tue, 06 Mar 2012 16:09:35 -0800

author
ohair
date
Tue, 06 Mar 2012 16:09:35 -0800
changeset 286
f50545b5e2f1
child 397
b99d7e355d4b
permissions
-rw-r--r--

7150322: Stop using drop source bundles in jaxws
Reviewed-by: darcy, ohrstrom

     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.model;
    28 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
    29 import javax.xml.namespace.QName;
    31 import com.sun.tools.internal.xjc.model.nav.NClass;
    32 import com.sun.tools.internal.xjc.model.nav.NType;
    33 import com.sun.tools.internal.xjc.reader.xmlschema.BGMBuilder;
    34 import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
    35 import com.sun.xml.internal.bind.v2.model.core.TypeRef;
    36 import com.sun.xml.internal.bind.v2.runtime.RuntimeUtil;
    37 import com.sun.xml.internal.xsom.XmlString;
    38 import com.sun.xml.internal.xsom.XSElementDecl;
    39 import com.sun.istack.internal.Nullable;
    41 /**
    42  * {@link TypeRef} for XJC.
    43  *
    44  * TODO: do we need the source schema component support here?
    45  *
    46  * @author Kohsuke Kawaguchi
    47  */
    48 public final class CTypeRef implements TypeRef<NType,NClass> {
    49     /**
    50      * In-memory type.
    51      *
    52      * This is the type used when
    53      */
    54     @XmlJavaTypeAdapter(RuntimeUtil.ToStringAdapter.class)
    55     private final CNonElement type;
    57     private final QName elementName;
    59     /**
    60      * XML Schema type name of {@link #type}, if available.
    61      */
    62     /*package*/ final @Nullable QName typeName;
    64     private final boolean nillable;
    65     public final XmlString defaultValue;
    67     public CTypeRef(CNonElement type, XSElementDecl decl) {
    68         this(type, BGMBuilder.getName(decl),getSimpleTypeName(decl), decl.isNillable(), decl.getDefaultValue() );
    70     }
    72     public QName getTypeName() {
    73         return typeName;
    74     }
    76     public static QName getSimpleTypeName(XSElementDecl decl) {
    77         if(decl==null)  return null;
    78         QName typeName = null;
    79         if(decl.getType().isSimpleType())
    80             typeName = BGMBuilder.getName(decl.getType());
    81         return typeName;
    82     }
    84     public CTypeRef(CNonElement type, QName elementName, QName typeName, boolean nillable, XmlString defaultValue) {
    85         assert type!=null;
    86         assert elementName!=null;
    88         this.type = type;
    89         this.elementName = elementName;
    90         this.typeName = typeName;
    91         this.nillable = nillable;
    92         this.defaultValue = defaultValue;
    93     }
    95     public CNonElement getTarget() {
    96         return type;
    97     }
    99     public QName getTagName() {
   100         return elementName;
   101     }
   103     public boolean isNillable() {
   104         return nillable;
   105     }
   107     /**
   108      * Inside XJC, use {@link #defaultValue} that has context information.
   109      * This method is to override the one defined in the runtime model.
   110      *
   111      * @see #defaultValue
   112      */
   113     public String getDefaultValue() {
   114         if(defaultValue!=null)
   115             return defaultValue.value;
   116         else
   117             return null;
   118     }
   120     public boolean isLeaf() {
   121         // TODO: implement this method later
   122         throw new UnsupportedOperationException();
   123     }
   125     public PropertyInfo<NType, NClass> getSource() {
   126         // TODO: implement this method later
   127         throw new UnsupportedOperationException();
   128     }
   129 }

mercurial