本文整理了Java中org.exolab.castor.xml.util.XMLFieldDescriptorImpl.setIncremental()
方法的一些代码示例,展示了XMLFieldDescriptorImpl.setIncremental()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLFieldDescriptorImpl.setIncremental()
方法的具体详情如下:
包路径:org.exolab.castor.xml.util.XMLFieldDescriptorImpl
类名称:XMLFieldDescriptorImpl
方法名:setIncremental
[英]Sets the incremental flag which indicates whether this member can be added before the unmarshaler is finished unmarshaling it.
[中]设置增量标志,该标志指示在解组器完成对该成员的解组之前是否可以添加该成员。
代码示例来源:origin: org.codehaus.castor/castor-xml
if (isPrimitive(_topClass)) {
classDesc = new PrimitivesClassDescriptor(_topClass);
fieldDesc.setIncremental(false);
_topState.setPrimitiveOrImmutable(true);
代码示例来源:origin: org.codehaus.castor/com.springsource.org.castor
if (isPrimitive(_topClass)) {
classDesc = new PrimitivesClassDescriptor(_topClass);
fieldDesc.setIncremental(false);
_topState.primitiveOrImmutable = true;
内容来源于网络,如有侵权,请联系作者删除!