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


Java Loader类代码示例

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


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

示例1: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    if(loader==null) {
        // these variables have to be set before they are initialized,
        // because the initialization may build other loaders and they may refer to this.
        StructureLoader sl = new StructureLoader(this);
        loader = sl;
        if(ci.hasSubClasses())
            loaderWithTypeSubst = new XsiTypeLoader(this);
        else
            // optimization. we know there can be no @xsi:type
            loaderWithTypeSubst = loader;


        sl.init(context,this,ci.getAttributeWildcard());
    }
    if(typeSubstitutionCapable)
        return loaderWithTypeSubst;
    else
        return loader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:ClassBeanInfoImpl.java

示例2: selectRootLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
/**
 * Based on the tag name, determine what object to unmarshal,
 * and then set a new object and its loader to the current unmarshaller state.
 *
 * @return
 *      null if the given name pair is not recognized.
 */
public final Loader selectRootLoader( UnmarshallingContext.State state, TagName tag ) {
    JaxBeanInfo beanInfo = rootMap.get(tag.uri,tag.local);
    if(beanInfo==null)
        return null;

    return beanInfo.getLoader(this,true);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:JAXBContextImpl.java

示例3: receive

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public void receive(UnmarshallingContext.State state, Object o) throws SAXException {
    try {
        set((BeanT) state.getTarget(), (ValueT) o);
    } catch (AccessorException e) {
        Loader.handleGenericException(e, true);
    } catch (IllegalAccessError iae) {
        // throw UnmarshalException instead IllegalAccesssError | Issue 475
        Loader.handleGenericError(iae);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:Accessor.java

示例4: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    if(loader==null) {
        // this has to be done lazily to avoid cyclic reference issue
        UnmarshallerChain c = new UnmarshallerChain(context);
        QNameMap<ChildLoader> result = new QNameMap<ChildLoader>();
        property.buildChildElementUnmarshallers(c,result);
        if(result.size()==1)
            // for ElementBeanInfoImpl created from RuntimeElementInfo
            this.loader = new IntercepterLoader(result.getOne().getValue().loader);
        else
            // for special ElementBeanInfoImpl only used for marshalling
            this.loader = Discarder.INSTANCE;
    }
    return loader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:16,代码来源:ElementBeanInfoImpl.java

示例5: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public final Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    if(loader==null)
        loader = new ArrayLoader(context);

    // type substitution not possible
    return loader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:ArrayBeanInfoImpl.java

示例6: receive

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public void receive(UnmarshallingContext.State state, Object o) throws SAXException {
    try {
        set((BeanT) state.target, (ValueT) o);
    } catch (AccessorException e) {
        Loader.handleGenericException(e, true);
    } catch (IllegalAccessError iae) {
        // throw UnmarshalException instead IllegalAccesssError | Issue 475
        Loader.handleGenericError(iae);
    }
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:11,代码来源:Accessor.java

示例7: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    // no unmarshaller support for this.
    throw new UnsupportedOperationException();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:CompositeStructureBeanInfo.java

示例8: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    if(typeSubstitutionCapable)
        return substLoader;
    else
        return domLoader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:AnyTypeBeanInfo.java

示例9: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public final Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    if(typeSubstitutionCapable)
        return loaderWithSubst;
    else
        return loader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:LeafBeanInfoImpl.java

示例10: IntercepterLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public IntercepterLoader(Loader core) {
    this.core = core;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:ElementBeanInfoImpl.java

示例11: getLoader

import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public final Loader getLoader(JAXBContextImpl context, boolean typeSubstitutionCapable) {
    // type substitution impossible
    return loader;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:ValueListBeanInfoImpl.java


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