gpt4 book ai didi

com.sun.xml.bind.v2.runtime.XMLSerializer.childAsSoleContent()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-23 21:21:05 29 4
gpt4 key购买 nike

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

XMLSerializer.childAsSoleContent介绍

[英]The equivalent of:

childAsURIs(child, fieldName); 
endNamespaceDecls(); 
childAsAttributes(child, fieldName); 
endAttributes(); 
childAsBody(child, fieldName);

This produces the given child object as the sole content of an element. Used to reduce the code size in the generated marshaller.
[中]等价于:

childAsURIs(child, fieldName); 
endNamespaceDecls(); 
childAsAttributes(child, fieldName); 
endAttributes(); 
childAsBody(child, fieldName);

这将生成给定的子对象作为元素的唯一内容。用于减少生成的封送拆收器中的代码大小。

代码示例

代码示例来源:origin: com.sun.xml.bind/jaxb-impl

public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    target.reportError(
      new ValidationEventImpl(
        ValidationEvent.ERROR,
        Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(bean.getClass().getName()),
        null,
        null));
  }
  else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
  }
}

代码示例来源:origin: com.sun.xml.bind/jaxb-impl

public void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    Class beanClass = bean.getClass();
    String message;
    if (beanClass.isAnnotationPresent(XmlRootElement.class)) {
      message = Messages.UNABLE_TO_MARSHAL_UNBOUND_CLASS.format(beanClass.getName());
    } else {
      message = Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(beanClass.getName());
    }
    target.reportError(new ValidationEventImpl(ValidationEvent.ERROR,message,null, null));
  } else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
    if (retainPropertyInfo) {
      target.currentProperty.remove();
    }
  }
}

代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime

public void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    Class beanClass = bean.getClass();
    String message;
    if (beanClass.isAnnotationPresent(XmlRootElement.class)) {
      message = Messages.UNABLE_TO_MARSHAL_UNBOUND_CLASS.format(beanClass.getName());
    } else {
      message = Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(beanClass.getName());
    }
    target.reportError(new ValidationEventImpl(ValidationEvent.ERROR,message,null, null));
  } else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
    if (retainPropertyInfo) {
      target.currentProperty.remove();
    }
  }
}

代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime

public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    target.reportError(
      new ValidationEventImpl(
        ValidationEvent.ERROR,
        Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(bean.getClass().getName()),
        null,
        null));
  }
  else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
  }
}

代码示例来源:origin: apache/servicemix-bundles

public void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    Class beanClass = bean.getClass();
    String message;
    if (beanClass.isAnnotationPresent(XmlRootElement.class)) {
      message = Messages.UNABLE_TO_MARSHAL_UNBOUND_CLASS.format(beanClass.getName());
    } else {
      message = Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(beanClass.getName());
    }
    target.reportError(new ValidationEventImpl(ValidationEvent.ERROR,message,null, null));
  } else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
    if (retainPropertyInfo) {
      target.currentProperty.remove();
    }
  }
}

代码示例来源:origin: apache/servicemix-bundles

public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    target.reportError(
      new ValidationEventImpl(
        ValidationEvent.ERROR,
        Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(bean.getClass().getName()),
        null,
        null));
  }
  else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-impl

public void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    Class beanClass = bean.getClass();
    String message;
    if (beanClass.isAnnotationPresent(XmlRootElement.class)) {
      message = Messages.UNABLE_TO_MARSHAL_UNBOUND_CLASS.format(beanClass.getName());
    } else {
      message = Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(beanClass.getName());
    }
    target.reportError(new ValidationEventImpl(ValidationEvent.ERROR,message,null, null));
  } else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
    if (retainPropertyInfo) {
      target.currentProperty.remove();
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-impl

public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
  if(tagName==null) {
    target.reportError(
      new ValidationEventImpl(
        ValidationEvent.ERROR,
        Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(bean.getClass().getName()),
        null,
        null));
  }
  else {
    target.startElement(tagName,bean);
    target.childAsSoleContent(bean,null);
    target.endElement();
  }
}

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