当前位置: 首页>>代码示例>>Java>>正文


Java Util类代码示例

本文整理汇总了Java中com.sun.xml.internal.bind.Util的典型用法代码示例。如果您正苦于以下问题:Java Util类的具体用法?Java Util怎么用?Java Util使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Util类属于com.sun.xml.internal.bind包,在下文中一共展示了Util类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createContext

import com.sun.xml.internal.bind.Util; //导入依赖的package包/类
/**
 * The API will invoke this method via reflection
 */
public static JAXBContext createContext( Class[] classes, Map<String,Object> properties ) throws JAXBException {
    // fool-proof check, and copy the map to make it easier to find unrecognized properties.
    if(properties==null)
        properties = Collections.emptyMap();
    else
        properties = new HashMap<String,Object>(properties);

    String defaultNsUri = getPropertyValue(properties,JAXBRIContext.DEFAULT_NAMESPACE_REMAP,String.class);

    Boolean c14nSupport = getPropertyValue(properties,JAXBRIContext.CANONICALIZATION_SUPPORT,Boolean.class);
    if(c14nSupport==null)
        c14nSupport = false;

    Boolean allNillable = getPropertyValue(properties,JAXBRIContext.TREAT_EVERYTHING_NILLABLE,Boolean.class);
    if(allNillable==null)
        allNillable = false;

    Boolean retainPropertyInfo = getPropertyValue(properties, JAXBRIContext.RETAIN_REFERENCE_TO_INFO, Boolean.class);
    if(retainPropertyInfo==null)
        retainPropertyInfo = false;

    Boolean supressAccessorWarnings = getPropertyValue(properties, JAXBRIContext.SUPRESS_ACCESSOR_WARNINGS, Boolean.class);
    if(supressAccessorWarnings==null)
        supressAccessorWarnings = false;

    Boolean improvedXsiTypeHandling = getPropertyValue(properties, JAXBRIContext.IMPROVED_XSI_TYPE_HANDLING, Boolean.class);
    if(improvedXsiTypeHandling == null)
        improvedXsiTypeHandling = true;

    Boolean xmlAccessorFactorySupport = getPropertyValue(properties,
       JAXBRIContext.XMLACCESSORFACTORY_SUPPORT,Boolean.class);
    if(xmlAccessorFactorySupport==null){
        xmlAccessorFactorySupport = false;
        Util.getClassLogger().log(Level.FINE, "Property " +
            JAXBRIContext.XMLACCESSORFACTORY_SUPPORT +
            "is not active.  Using JAXB's implementation");
    }

    RuntimeAnnotationReader ar = getPropertyValue(properties,JAXBRIContext.ANNOTATION_READER,RuntimeAnnotationReader.class);

    Map<Class,Class> subclassReplacements;
    try {
        subclassReplacements = TypeCast.checkedCast(
            getPropertyValue(properties, JAXBRIContext.SUBCLASS_REPLACEMENTS, Map.class), Class.class, Class.class);
    } catch (ClassCastException e) {
        throw new JAXBException(Messages.INVALID_TYPE_IN_MAP.format(),e);
    }

    if(!properties.isEmpty()) {
        throw new JAXBException(Messages.UNSUPPORTED_PROPERTY.format(properties.keySet().iterator().next()));
    }

    JAXBContextImpl.JAXBContextBuilder builder = new JAXBContextImpl.JAXBContextBuilder();
    builder.setClasses(classes);
    builder.setTypeRefs(Collections.<TypeReference>emptyList());
    builder.setSubclassReplacements(subclassReplacements);
    builder.setDefaultNsUri(defaultNsUri);
    builder.setC14NSupport(c14nSupport);
    builder.setAnnotationReader(ar);
    builder.setXmlAccessorFactorySupport(xmlAccessorFactorySupport);
    builder.setAllNillable(allNillable);
    builder.setRetainPropertyInfo(retainPropertyInfo);
    builder.setSupressAccessorWarnings(supressAccessorWarnings);
    builder.setImprovedXsiTypeHandling(improvedXsiTypeHandling);
    return builder.build();
}
 
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:70,代码来源:ContextFactory.java


注:本文中的com.sun.xml.internal.bind.Util类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。