本文整理汇总了Java中com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext类的典型用法代码示例。如果您正苦于以下问题:Java UnmarshallingContext类的具体用法?Java UnmarshallingContext怎么用?Java UnmarshallingContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UnmarshallingContext类属于com.sun.xml.internal.bind.v2.runtime.unmarshaller包,在下文中一共展示了UnmarshallingContext类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: parse
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
public Class parse(CharSequence text) throws SAXException {
TODO.checkSpec("JSR222 Issue #42");
try {
String name = WhiteSpaceProcessor.trim(text).toString();
ClassLoader cl = UnmarshallingContext.getInstance().classLoader;
if(cl==null)
cl = Thread.currentThread().getContextClassLoader();
if(cl!=null)
return cl.loadClass(name);
else
return Class.forName(name);
} catch (ClassNotFoundException e) {
UnmarshallingContext.getInstance().handleError(e);
return null;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:RuntimeBuiltinLeafInfoImpl.java
示例2: startElement
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
// create or obtain the Map object
try {
target.set((BeanT)state.getPrev().getTarget());
map.set(acc.get(target.get()));
depthCounter++;
if(map.get() == null) {
map.set(ClassFactory.create(mapImplClass));
}
map.get().clear();
state.setTarget(map.get());
} catch (AccessorException e) {
// recover from error by setting a dummy Map that receives and discards the values
handleGenericException(e,true);
state.setTarget(new HashMap());
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:19,代码来源:SingleMapNodeProperty.java
示例3: createInstance
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
public BeanT createInstance(UnmarshallingContext context) throws IllegalAccessException, InvocationTargetException, InstantiationException, SAXException {
BeanT bean = null;
if (factoryMethod == null){
bean = ClassFactory.create0(jaxbType);
}else {
Object o = ClassFactory.create(factoryMethod);
if( jaxbType.isInstance(o) ){
bean = (BeanT)o;
} else {
throw new InstantiationException("The factory method didn't return a correct object");
}
}
if(xmlLocatorField!=null)
// need to copy because Locator is mutable
try {
xmlLocatorField.set(bean,new LocatorImpl(context.getLocator()));
} catch (AccessorException e) {
context.handleError(e);
}
return bean;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:ClassBeanInfoImpl.java
示例4: intercept
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
public Object intercept(UnmarshallingContext.State state, Object o) throws SAXException {
JAXBElement e = (JAXBElement)state.getTarget();
state.setTarget(state.getBackup());
state.setBackup(null);
if (state.isNil()) {
e.setNil(true);
state.setNil(false);
}
if(o!=null)
// if the value is a leaf type, it's often already set to the element
// through Accessor.
e.setValue(o);
fireAfterUnmarshal(ElementBeanInfoImpl.this, e, state);
return e;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:ElementBeanInfoImpl.java
示例5: startElement
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
// create or obtain the Map object
try {
BeanT target = (BeanT) state.getPrev().getTarget();
ValueT mapValue = acc.get(target);
if(mapValue == null)
mapValue = ClassFactory.create(mapImplClass);
else
mapValue.clear();
Stack.push(this.target, target);
Stack.push(map, mapValue);
state.setTarget(mapValue);
} catch (AccessorException e) {
// recover from error by setting a dummy Map that receives and discards the values
handleGenericException(e,true);
state.setTarget(new HashMap());
}
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:21,代码来源:SingleMapNodeProperty.java
示例6: startElement
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
// create or obtain the Map object
try {
target.set((BeanT)state.prev.target);
map.set(acc.get(target.get()));
depthCounter++;
if(map.get() == null) {
map.set(ClassFactory.create(mapImplClass));
}
map.get().clear();
state.target = map.get();
} catch (AccessorException e) {
// recover from error by setting a dummy Map that receives and discards the values
handleGenericException(e,true);
state.target = new HashMap();
}
}
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:19,代码来源:SingleMapNodeProperty.java
示例7: intercept
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
public Object intercept(UnmarshallingContext.State state, Object o) throws SAXException {
JAXBElement e = (JAXBElement)state.target;
state.target = state.backup;
state.backup = null;
if (state.nil) {
e.setNil(true);
state.nil = false;
}
if(o!=null)
// if the value is a leaf type, it's often already set to the element
// through Accessor.
e.setValue(o);
fireAfterUnmarshal(ElementBeanInfoImpl.this, e, state);
return e;
}
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:20,代码来源:ElementBeanInfoImpl.java
示例8: startElement
import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext; //导入依赖的package包/类
@Override
public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
// create or obtain the Map object
try {
target.set((BeanT)state.prev.target);
map.set(acc.get(target.get()));
if(map.get() == null) {
map.set(ClassFactory.create(mapImplClass));
}
map.get().clear();
state.target = map.get();
} catch (AccessorException e) {
// recover from error by setting a dummy Map that receives and discards the values
handleGenericException(e,true);
state.target = new HashMap();
}
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:18,代码来源:SingleMapNodeProperty.java
注:本文中的com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论