src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/SingleTypePropertyInfoImpl.java

changeset 0
373ffda63c9a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/SingleTypePropertyInfoImpl.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,134 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.xml.internal.bind.v2.model.impl;
    1.30 +
    1.31 +import java.util.Collections;
    1.32 +import java.util.List;
    1.33 +
    1.34 +import javax.xml.bind.annotation.XmlList;
    1.35 +
    1.36 +import com.sun.xml.internal.bind.v2.model.core.ID;
    1.37 +import com.sun.xml.internal.bind.v2.model.core.NonElement;
    1.38 +import com.sun.xml.internal.bind.v2.model.core.PropertyInfo;
    1.39 +import com.sun.xml.internal.bind.v2.model.runtime.RuntimeNonElementRef;
    1.40 +import com.sun.xml.internal.bind.v2.model.runtime.RuntimePropertyInfo;
    1.41 +import com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationException;
    1.42 +import com.sun.xml.internal.bind.v2.runtime.Transducer;
    1.43 +import com.sun.xml.internal.bind.v2.runtime.reflect.Accessor;
    1.44 +
    1.45 +/**
    1.46 + * {@link PropertyInfoImpl} that can only have one type.
    1.47 + *
    1.48 + * Specifically, {@link AttributePropertyInfoImpl} and {@link ValuePropertyInfoImpl}.
    1.49 + *
    1.50 + * @author Kohsuke Kawaguchi
    1.51 + */
    1.52 +abstract class SingleTypePropertyInfoImpl<T,C,F,M>
    1.53 +    extends PropertyInfoImpl<T,C,F,M> {
    1.54 +
    1.55 +    /**
    1.56 +     * Computed lazily.
    1.57 +     *
    1.58 +     * @see {@link #getTarget()}.
    1.59 +     */
    1.60 +    private NonElement<T,C> type;
    1.61 +
    1.62 +    public SingleTypePropertyInfoImpl(ClassInfoImpl<T,C,F,M> classInfo, PropertySeed<T,C,F,M> seed) {
    1.63 +        super(classInfo, seed);
    1.64 +        if(this instanceof RuntimePropertyInfo) {
    1.65 +            Accessor rawAcc = ((RuntimeClassInfoImpl.RuntimePropertySeed)seed).getAccessor();
    1.66 +            if(getAdapter()!=null && !isCollection())
    1.67 +                // adapter for a single-value property is handled by accessor.
    1.68 +                // adapter for a collection property is handled by lister.
    1.69 +                rawAcc = rawAcc.adapt(((RuntimePropertyInfo)this).getAdapter());
    1.70 +            this.acc = rawAcc;
    1.71 +        } else
    1.72 +            this.acc = null;
    1.73 +    }
    1.74 +
    1.75 +    public List<? extends NonElement<T,C>> ref() {
    1.76 +        return Collections.singletonList(getTarget());
    1.77 +    }
    1.78 +
    1.79 +    public NonElement<T,C> getTarget() {
    1.80 +        if(type==null) {
    1.81 +            assert parent.builder!=null : "this method must be called during the build stage";
    1.82 +            type = parent.builder.getTypeInfo(getIndividualType(),this);
    1.83 +        }
    1.84 +        return type;
    1.85 +    }
    1.86 +
    1.87 +    public PropertyInfo<T,C> getSource() {
    1.88 +        return this;
    1.89 +    }
    1.90 +
    1.91 +    public void link() {
    1.92 +        super.link();
    1.93 +
    1.94 +        if (!(NonElement.ANYTYPE_NAME.equals(type.getTypeName()) || type.isSimpleType() || id()==ID.IDREF)) {
    1.95 +                parent.builder.reportError(new IllegalAnnotationException(
    1.96 +                Messages.SIMPLE_TYPE_IS_REQUIRED.format(),
    1.97 +                seed
    1.98 +            ));
    1.99 +        }
   1.100 +
   1.101 +        if(!isCollection() && seed.hasAnnotation(XmlList.class)) {
   1.102 +            parent.builder.reportError(new IllegalAnnotationException(
   1.103 +                Messages.XMLLIST_ON_SINGLE_PROPERTY.format(), this
   1.104 +            ));
   1.105 +        }
   1.106 +    }
   1.107 +
   1.108 +//
   1.109 +//
   1.110 +// technically these code belong to runtime implementation, but moving the code up here
   1.111 +// allows this to be shared between RuntimeValuePropertyInfoImpl and RuntimeAttributePropertyInfoImpl
   1.112 +//
   1.113 +//
   1.114 +
   1.115 +    private final Accessor acc;
   1.116 +    /**
   1.117 +     * Lazily created.
   1.118 +     */
   1.119 +    private Transducer xducer;
   1.120 +
   1.121 +    public Accessor getAccessor() {
   1.122 +        return acc;
   1.123 +    }
   1.124 +
   1.125 +
   1.126 +    public Transducer getTransducer() {
   1.127 +        if(xducer==null) {
   1.128 +            xducer = RuntimeModelBuilder.createTransducer((RuntimeNonElementRef)this);
   1.129 +            if(xducer==null) {
   1.130 +                // this situation is checked by by the link method.
   1.131 +                // avoid repeating the same error by silently recovering
   1.132 +                xducer = RuntimeBuiltinLeafInfoImpl.STRING;
   1.133 +            }
   1.134 +        }
   1.135 +        return xducer;
   1.136 +    }
   1.137 +}

mercurial