src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/RuntimeUtil.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     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/runtime/RuntimeUtil.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,128 @@
     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.runtime;
    1.30 +
    1.31 +import java.util.Collections;
    1.32 +import java.util.HashMap;
    1.33 +import java.util.Map;
    1.34 +
    1.35 +import javax.xml.bind.annotation.adapters.XmlAdapter;
    1.36 +
    1.37 +/**
    1.38 + * @author Kohsuke Kawaguchi
    1.39 + */
    1.40 +public class RuntimeUtil {
    1.41 +    /**
    1.42 +     * XmlAdapter for printing arbitrary object by using {@link Object#toString()}.
    1.43 +     */
    1.44 +    public static final class ToStringAdapter extends XmlAdapter<String,Object> {
    1.45 +        public Object unmarshal(String s) {
    1.46 +            throw new UnsupportedOperationException();
    1.47 +        }
    1.48 +
    1.49 +        public String marshal(Object o) {
    1.50 +            if(o==null)     return null;
    1.51 +            return o.toString();
    1.52 +        }
    1.53 +    }
    1.54 +
    1.55 +    /**
    1.56 +     * Map from {@link Class} objects representing primitive types
    1.57 +     * to {@link Class} objects representing their boxed types.
    1.58 +     * <p>
    1.59 +     * e.g., int -> Integer.
    1.60 +     */
    1.61 +    public static final Map<Class,Class> boxToPrimitive;
    1.62 +
    1.63 +    /**
    1.64 +     * Reverse map of {@link #boxToPrimitive}.
    1.65 +     */
    1.66 +    public static final Map<Class,Class> primitiveToBox;
    1.67 +
    1.68 +    static {
    1.69 +        Map<Class,Class> b = new HashMap<Class,Class>();
    1.70 +        b.put(Byte.TYPE,Byte.class);
    1.71 +        b.put(Short.TYPE,Short.class);
    1.72 +        b.put(Integer.TYPE,Integer.class);
    1.73 +        b.put(Long.TYPE,Long.class);
    1.74 +        b.put(Character.TYPE,Character.class);
    1.75 +        b.put(Boolean.TYPE,Boolean.class);
    1.76 +        b.put(Float.TYPE,Float.class);
    1.77 +        b.put(Double.TYPE,Double.class);
    1.78 +        b.put(Void.TYPE,Void.class);
    1.79 +
    1.80 +        primitiveToBox = Collections.unmodifiableMap(b);
    1.81 +
    1.82 +        Map<Class,Class> p = new HashMap<Class,Class>();
    1.83 +        for( Map.Entry<Class,Class> e :  b.entrySet() )
    1.84 +            p.put(e.getValue(),e.getKey());
    1.85 +
    1.86 +        boxToPrimitive = Collections.unmodifiableMap(p);
    1.87 +    }
    1.88 +
    1.89 +    /**
    1.90 +     * Reports a print conversion error while marshalling.
    1.91 +     */
    1.92 +/*
    1.93 +    public static void handlePrintConversionException(
    1.94 +        Object caller, Exception e, XMLSerializer serializer ) throws SAXException {
    1.95 +
    1.96 +        if( e instanceof SAXException )
    1.97 +            // assume this exception is not from application.
    1.98 +            // (e.g., when a marshaller aborts the processing, this exception
    1.99 +            //        will be thrown)
   1.100 +            throw (SAXException)e;
   1.101 +
   1.102 +        ValidationEvent ve = new PrintConversionEventImpl(
   1.103 +            ValidationEvent.ERROR, e.getMessage(),
   1.104 +            new ValidationEventLocatorImpl(caller), e );
   1.105 +        serializer.reportError(ve);
   1.106 +    }
   1.107 +*/
   1.108 +
   1.109 +    /**
   1.110 +     * Reports that the type of an object in a property is unexpected.
   1.111 +     */
   1.112 +/*
   1.113 +    public static void handleTypeMismatchError( XMLSerializer serializer,
   1.114 +            Object parentObject, String fieldName, Object childObject ) throws SAXException {
   1.115 +
   1.116 +         ValidationEvent ve = new ValidationEventImpl(
   1.117 +            ValidationEvent.ERROR, // maybe it should be a fatal error.
   1.118 +             Messages.TYPE_MISMATCH.format(
   1.119 +                getTypeName(parentObject),
   1.120 +                fieldName,
   1.121 +                getTypeName(childObject) ),
   1.122 +            new ValidationEventLocatorExImpl(parentObject,fieldName) );
   1.123 +
   1.124 +        serializer.reportError(ve);
   1.125 +    }
   1.126 +*/
   1.127 +
   1.128 +    private static String getTypeName( Object o ) {
   1.129 +        return o.getClass().getName();
   1.130 +    }
   1.131 +}

mercurial