本文整理汇总了Java中com.sun.xml.internal.bind.v2.runtime.reflect.Lister类的典型用法代码示例。如果您正苦于以下问题:Java Lister类的具体用法?Java Lister怎么用?Java Lister使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Lister类属于com.sun.xml.internal.bind.v2.runtime.reflect包,在下文中一共展示了Lister类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: add
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的package包/类
/**
* Adds a new item to this packing scope.
*/
public void add( Accessor<BeanT,PropT> acc, Lister<BeanT,PropT,ItemT,PackT> lister, ItemT value) throws SAXException{
try {
if(!hasStarted()) {
this.bean = (BeanT)context.getCurrentState().getTarget();
this.acc = acc;
this.lister = lister;
this.pack = lister.startPacking(bean,acc);
}
lister.addToPack(pack,value);
} catch (AccessorException e) {
Loader.handleGenericException(e,true);
// recover from this error by ignoring future items.
this.lister = Lister.getErrorInstance();
this.acc = Accessor.getErrorInstance();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:Scope.java
示例2: start
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的package包/类
/**
* Starts the packing scope, without adding any item.
*
* This allows us to return an empty pack, thereby allowing the user
* to distinguish empty array vs null array.
*/
public void start( Accessor<BeanT,PropT> acc, Lister<BeanT,PropT,ItemT,PackT> lister) throws SAXException{
try {
if(!hasStarted()) {
this.bean = (BeanT)context.getCurrentState().getTarget();
this.acc = acc;
this.lister = lister;
this.pack = lister.startPacking(bean,acc);
}
} catch (AccessorException e) {
Loader.handleGenericException(e,true);
// recover from this error by ignoring future items.
this.lister = Lister.getErrorInstance();
this.acc = Accessor.getErrorInstance();
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:Scope.java
示例3: add
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的package包/类
/**
* Adds a new item to this packing scope.
*/
public void add( Accessor<BeanT,PropT> acc, Lister<BeanT,PropT,ItemT,PackT> lister, ItemT value) throws SAXException{
try {
if(!hasStarted()) {
this.bean = (BeanT)context.getCurrentState().target;
this.acc = acc;
this.lister = lister;
this.pack = lister.startPacking(bean,acc);
}
lister.addToPack(pack,value);
} catch (AccessorException e) {
Loader.handleGenericException(e,true);
// recover from this error by ignoring future items.
this.lister = Lister.getErrorInstance();
this.acc = Accessor.getErrorInstance();
}
}
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:21,代码来源:Scope.java
示例4: start
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的package包/类
/**
* Starts the packing scope, without adding any item.
*
* This allows us to return an empty pack, thereby allowing the user
* to distinguish empty array vs null array.
*/
public void start( Accessor<BeanT,PropT> acc, Lister<BeanT,PropT,ItemT,PackT> lister) throws SAXException{
try {
if(!hasStarted()) {
this.bean = (BeanT)context.getCurrentState().target;
this.acc = acc;
this.lister = lister;
this.pack = lister.startPacking(bean,acc);
}
} catch (AccessorException e) {
Loader.handleGenericException(e,true);
// recover from this error by ignoring future items.
this.lister = Lister.getErrorInstance();
this.acc = Accessor.getErrorInstance();
}
}
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:22,代码来源:Scope.java
示例5: serializeListBody
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的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
示例6: ItemsLoader
import com.sun.xml.internal.bind.v2.runtime.reflect.Lister; //导入依赖的package包/类
public ItemsLoader(Accessor acc, Lister lister, QNameMap<ChildLoader> children) {
super(false);
this.acc = acc;
this.lister = lister;
this.children = children;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:ArrayERProperty.java
注:本文中的com.sun.xml.internal.bind.v2.runtime.reflect.Lister类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论