本文整理汇总了Java中com.sun.xml.internal.bind.v2.runtime.reflect.ListIterator类的典型用法代码示例。如果您正苦于以下问题:Java ListIterator类的具体用法?Java ListIterator怎么用?Java ListIterator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ListIterator类属于com.sun.xml.internal.bind.v2.runtime.reflect包,在下文中一共展示了ListIterator类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: serializeListBody
import com.sun.xml.internal.bind.v2.runtime.reflect.ListIterator; //导入依赖的package包/类
protected final void serializeListBody(BeanT o, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException {
ListIterator<ItemT> itr = lister.iterator(list, w);
while(itr.hasNext()) {
try {
ItemT item = itr.next();
if (item != null) {
if(isMixed && item.getClass()==String.class) {
w.text((String)item,null);
} else {
JaxBeanInfo bi = w.grammar.getBeanInfo(item,true);
if(bi.jaxbType==Object.class && domHandler!=null)
// even if 'v' is a DOM node, it always derive from Object,
// so the getBeanInfo returns BeanInfo for Object
w.writeDom(item,domHandler,o,fieldName);
else
bi.serializeRoot(item,w);
}
}
} catch (JAXBException e) {
w.reportError(fieldName,e);
// recover by ignoring this item
}
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:26,代码来源:ArrayReferenceNodeProperty.java
示例2: serializeListBody
import com.sun.xml.internal.bind.v2.runtime.reflect.ListIterator; //导入依赖的package包/类
protected void serializeListBody(BeanT beanT, XMLSerializer w, ListT list) throws IOException, XMLStreamException, SAXException, AccessorException {
ListIterator<ItemT> itr = lister.iterator(list, w);
boolean isIdref = itr instanceof Lister.IDREFSIterator; // UGLY
while(itr.hasNext()) {
try {
ItemT item = itr.next();
if (item != null) {
Class itemType = item.getClass();
if(isIdref)
// This should be the only place where we need to be aware
// that the iterator is iterating IDREFS.
itemType = ((Lister.IDREFSIterator)itr).last().getClass();
// normally, this returns non-null
TagAndType tt = typeMap.get(itemType);
while(tt==null && itemType!=null) {
// otherwise we'll just have to try the slow way
itemType = itemType.getSuperclass();
tt = typeMap.get(itemType);
}
if(tt==null) {
// item is not of the expected type.
// w.reportError(new ValidationEventImpl(ValidationEvent.ERROR,
// Messages.UNEXPECTED_JAVA_TYPE.format(
// item.getClass().getName(),
// getExpectedClassNameList()
// ),
// w.getCurrentLocation(fieldName)));
// continue;
// see the similar code in SingleElementNodeProperty.
// for the purpose of simple type substitution, make it a non-error
w.startElement(typeMap.values().iterator().next().tagName,null);
w.childAsXsiType(item,fieldName,w.grammar.getBeanInfo(Object.class), false);
} else {
w.startElement(tt.tagName,null);
serializeItem(tt.beanInfo,item,w);
}
w.endElement();
} else {
if(nillableTagName!=null) {
w.startElement(nillableTagName,null);
w.writeXsiNilTrue();
w.endElement();
}
}
} catch (JAXBException e) {
w.reportError(fieldName,e);
// recover by ignoring this item
}
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:58,代码来源:ArrayElementProperty.java
注:本文中的com.sun.xml.internal.bind.v2.runtime.reflect.ListIterator类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论