org.eclipse.persistence.oxm.mappings.XMLDirectMapping.isCDATA()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLDirectMapping.isCDATA()方法的一些代码示例,展示了XMLDirectMapping.isCDATA()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLDirectMapping.isCDATA()方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.mappings.XMLDirectMapping
类名称:XMLDirectMapping
方法名:isCDATA

XMLDirectMapping.isCDATA介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  1. public void initialize(AbstractSession session) throws DescriptorException {
  2. super.initialize(session);
  3. ((XMLField)getField()).setIsCDATA(this.isCDATA());
  4. }

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

  1. public void initialize(AbstractSession session) throws DescriptorException {
  2. super.initialize(session);
  3. ((XMLField)getField()).setIsCDATA(this.isCDATA());
  4. String xpathString = ((XMLField)getField()).getXPath();
  5. if (this.isAbstractDirectMapping() && (xpathString.indexOf(XMLConstants.ATTRIBUTE) == -1) && (!xpathString.endsWith(XMLConstants.TEXT))) {
  6. throw DescriptorException.invalidXpathForXMLDirectMapping(this);
  7. }
  8. }

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

  1. public void initialize(AbstractSession session) throws DescriptorException {
  2. super.initialize(session);
  3. ((XMLField)getField()).setIsCDATA(this.isCDATA());
  4. String xpathString = ((XMLField)getField()).getXPath();
  5. if (this.isAbstractDirectMapping() && (xpathString.indexOf(XMLConstants.ATTRIBUTE) == -1) && (!xpathString.endsWith(XMLConstants.TEXT))) {
  6. throw DescriptorException.invalidXpathForXMLDirectMapping(this);
  7. }
  8. }

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

  1. public boolean marshalSingleValue(XPathFragment xPathFragment, MarshalRecord marshalRecord, Object object, Object objectValue, AbstractSession session, NamespaceResolver namespaceResolver, MarshalContext marshalContext) {
  2. Object fieldValue = xmlDirectMapping.getFieldValue(objectValue, session, marshalRecord);
  3. // Check for a null value
  4. if (null == fieldValue) {
  5. // Perform marshal operations based on the null policy
  6. return xmlDirectMapping.getNullPolicy().directMarshal(xPathFragment, marshalRecord, object, session, namespaceResolver);
  7. } else {
  8. QName schemaType = getSchemaType((XMLField) xmlDirectMapping.getField(), fieldValue, session);
  9. String stringValue = getValueToWrite(schemaType, fieldValue, (XMLConversionManager) session.getDatasourcePlatform().getConversionManager(), namespaceResolver);
  10. XPathFragment groupingFragment = marshalRecord.openStartGroupingElements(namespaceResolver);
  11. if (xPathFragment.isAttribute()) {
  12. marshalRecord.attribute(xPathFragment, namespaceResolver, stringValue);
  13. marshalRecord.closeStartGroupingElements(groupingFragment);
  14. } else {
  15. marshalRecord.closeStartGroupingElements(groupingFragment);
  16. if (xmlDirectMapping.isCDATA()) {
  17. marshalRecord.cdata(stringValue);
  18. } else {
  19. marshalRecord.characters(stringValue);
  20. }
  21. }
  22. return true;
  23. }
  24. }

相关文章