本文整理汇总了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;
}
示例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);
}
示例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);
}
}
示例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;
}
示例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;
}
示例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);
}
}
示例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();
}
示例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;
}
示例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;
}
示例10: IntercepterLoader
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader; //导入依赖的package包/类
public IntercepterLoader(Loader core) {
this.core = core;
}
示例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;
}