gpt4 book ai didi

org.eclipse.persistence.oxm.XMLMarshaller.isFormattedOutput()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 02:41:40 25 4
gpt4 key购买 nike

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

XMLMarshaller.isFormattedOutput介绍

[英]Returns if this XMLMarshaller should format the XML By default this is set to true and the XML marshalled will be formatted.
[中]返回此XMLMarshaller是否应在默认情况下格式化XML,该值设置为true,并且将格式化已编组的XML。

代码示例

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

public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
  if (objectValue != null && elementClass.isAssignableFrom(objectValue.getClass())) {
    ErrorHandler handler = marshaller.getErrorHandler();
    Source source = null;
    if(handler != null && handler instanceof JAXBErrorHandler) {
      source = domHandler.marshal(objectValue, ((JAXBErrorHandler)handler).getValidationEventHandler());
    } else {
      source = domHandler.marshal(objectValue, null);
    }
    DOMResult result = new DOMResult();
     if(source instanceof DOMSource){
      Node n = ((DOMSource)source).getNode();
      if(n.getNodeType() == Node.DOCUMENT_NODE){
        return ((Document)n).getDocumentElement();
      }
      return n;
    }else{
      XMLTransformer xmlTransformer = xmlPlatform.newXMLTransformer();
      xmlTransformer.setFormattedOutput(marshaller.isFormattedOutput());
      xmlTransformer.transform(source, result);
      return result.getNode().getFirstChild();
    }
  }
  return objectValue;
}

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

public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
  if (objectValue != null && elementClass.isAssignableFrom(objectValue.getClass())) {
    ErrorHandler handler = marshaller.getErrorHandler();
    Source source = null;
    if(handler != null && handler instanceof JAXBErrorHandler) {
      source = domHandler.marshal(objectValue, ((JAXBErrorHandler)handler).getValidationEventHandler());
    } else {
      source = domHandler.marshal(objectValue, null);
    }
    DOMResult result = new DOMResult();
     if(source instanceof DOMSource){
      Node n = ((DOMSource)source).getNode();
      if(n.getNodeType() == Node.DOCUMENT_NODE){
        return ((Document)n).getDocumentElement();
      }
      return n;
    }else{                
      XMLTransformer xmlTransformer = xmlPlatform.newXMLTransformer();
      xmlTransformer.setFormattedOutput(marshaller.isFormattedOutput());
      xmlTransformer.transform(source, result);
      return result.getNode().getFirstChild();
    }
  }
  return objectValue;
}

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

public Object getProperty(String propName) throws PropertyException {
  if (null == propName) {
    throw new IllegalArgumentException();
  }
  if (propName.equals(Marshaller.JAXB_ENCODING)) {
    return this.xmlBinder.getMarshaller().getEncoding();
  }
  if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
    return this.xmlBinder.getMarshaller().isFormattedOutput();
  }
  if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
    return this.xmlBinder.getMarshaller().isFragment();
  }
  if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
    return this.xmlBinder.getMarshaller().getSchemaLocation();
  }
  if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
    return this.xmlBinder.getMarshaller().getNoNamespaceSchemaLocation();
  }
  throw new PropertyException(propName);
}

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

@Override
public Object getProperty(String propName) throws PropertyException {
  if (null == propName) {
    throw new IllegalArgumentException();
  }
  if (propName.equals(Marshaller.JAXB_ENCODING)) {
    return this.xmlBinder.getMarshaller().getEncoding();
  }
  if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
    return this.xmlBinder.getMarshaller().isFormattedOutput();
  }
  if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
    return this.xmlBinder.getMarshaller().isFragment();
  }
  if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
    return this.xmlBinder.getMarshaller().getSchemaLocation();
  }
  if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
    return this.xmlBinder.getMarshaller().getNoNamespaceSchemaLocation();
  }
  throw new PropertyException(propName);
}

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

throw new IllegalArgumentException();
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
  return xmlMarshaller.isFormattedOutput();
} else if (JAXB_ENCODING.equals(key)) {
  return xmlMarshaller.getEncoding();

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

throw new IllegalArgumentException();
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
  return xmlMarshaller.isFormattedOutput();
} else if (JAXB_ENCODING.equals(key)) {
  return xmlMarshaller.getEncoding();

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

if (isFormattedOutput()) {
  record = new FormattedOutputStreamRecord();                	
} else {

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

if(anXMLMarshaller.isFormattedOutput()) {
  writerRecord = new FormattedWriterRecord();
} else {

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

if(anXMLMarshaller.isFormattedOutput()) {
  writerRecord = new FormattedWriterRecord();
} else {

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

if(anXMLMarshaller.isFormattedOutput()) {
  writerRecord = new FormattedWriterRecord();
} else {

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

if(anXMLMarshaller.isFormattedOutput()) {
  writerRecord = new FormattedWriterRecord();
} else {

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

if (isFormattedOutput()) {
  writerRecord = new FormattedWriterRecord();
} else {

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com