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


Java RuntimeTypeInfo类代码示例

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


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

示例1: isLeaf

import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfo; //导入依赖的package包/类
/**
 * Look for the case that can be optimized as a leaf,
 * which is a kind of type whose XML representation is just PCDATA.
 */
static boolean isLeaf(RuntimePropertyInfo info) {
    Collection<? extends RuntimeTypeInfo> types = info.ref();
    if(types.size()!=1)     return false;

    RuntimeTypeInfo rti = types.iterator().next();
    if(!(rti instanceof RuntimeNonElement)) return false;

    if(info.id()==ID.IDREF)
        // IDREF is always handled as leaf -- Transducer maps IDREF String back to an object
        return true;

    if(((RuntimeNonElement)rti).getTransducer()==null)
        // Transducer!=null means definitely binds to PCDATA.
        // even if transducer==null, a referene might be IDREF,
        // in which case it will still produce PCDATA in this reference.
        return false;

    if(!info.getIndividualType().equals(rti.getType()))
        return false;

    return true;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:PropertyFactory.java

示例2: getOrCreate

import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfo; //导入依赖的package包/类
public JaxBeanInfo getOrCreate(RuntimeTypeInfo e) {
    if(e instanceof RuntimeElementInfo)
        return getOrCreate((RuntimeElementInfo)e);
    if(e instanceof RuntimeClassInfo)
        return getOrCreate((RuntimeClassInfo)e);
    if(e instanceof RuntimeLeafInfo) {
        JaxBeanInfo bi = beanInfos.get(e); // must have been created
        assert bi!=null;
        return bi;
    }
    if(e instanceof RuntimeArrayInfo)
        return getOrCreate((RuntimeArrayInfo)e);
    if(e.getType()==Object.class) {
        // anyType
        JaxBeanInfo bi = beanInfoMap.get(Object.class);
        if(bi==null) {
            bi = new AnyTypeBeanInfo(this,e);
            beanInfoMap.put(Object.class,bi);
        }
        return bi;
    }

    throw new IllegalArgumentException();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:25,代码来源:JAXBContextImpl.java

示例3: JaxBeanInfo

import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfo; //导入依赖的package包/类
private JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, Object typeName, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) {
    grammar.beanInfos.put(rti,this);

    this.jaxbType = jaxbType;
    this.typeName = typeName;
    this.flag = (short)((isElement?FLAG_IS_ELEMENT:0)
            |(isImmutable?FLAG_IS_IMMUTABLE:0)
            |(hasLifecycleEvents?FLAG_HAS_LIFECYCLE_EVENTS:0));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:JaxBeanInfo.java

示例4: ref

import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfo; //导入依赖的package包/类
public List<? extends RuntimeTypeInfo> ref() {
    return (List<? extends RuntimeTypeInfo>)super.ref();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:RuntimeMapPropertyInfoImpl.java

示例5: AnyTypeBeanInfo

import com.sun.xml.internal.bind.v2.model.runtime.RuntimeTypeInfo; //导入依赖的package包/类
public AnyTypeBeanInfo(JAXBContextImpl grammar,RuntimeTypeInfo anyTypeInfo) {
    super(grammar, anyTypeInfo, Object.class, new QName(WellKnownNamespace.XML_SCHEMA,"anyType"), false, true, false);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:AnyTypeBeanInfo.java


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