gpt4 book ai didi

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

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

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

XMLSerializer.pushCoordinator介绍

暂无

代码示例

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

private OnWire adaptM(Marshaller m,InMemory v) throws JAXBException {
  XMLSerializer serializer = ((MarshallerImpl)m).serializer;
  serializer.pushCoordinator();
  try {
    return _adaptM(serializer, v);
  } finally {
    serializer.popCoordinator();
  }
}

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

/**
 * Reset this object to write to the specified output.
 *
 * @param schemaLocation
 *      if non-null, this value is printed on the root element as xsi:schemaLocation
 * @param noNsSchemaLocation
 *      Similar to 'schemaLocation' but this one works for xsi:noNamespaceSchemaLocation
 */
public void startDocument(XmlOutput out,boolean fragment,String schemaLocation,String noNsSchemaLocation) throws IOException, SAXException, XMLStreamException {
  pushCoordinator();
  nsContext.reset();
  nse = nsContext.getCurrent();
  if(attachmentMarshaller!=null && attachmentMarshaller.isXOPPackage())
    out = new MTOMXmlOutput(out);
  this.out = out;
  objectsWithId.clear();
  idReferencedObjects.clear();
  textHasAlreadyPrinted = false;
  seenRoot = false;
  this.schemaLocation = schemaLocation;
  this.noNsSchemaLocation = noNsSchemaLocation;
  this.fragment = fragment;
  this.inlineBinaryFlag = false;
  this.expectedMimeType = null;
  cycleDetectionStack.reset();
  out.startDocument(this,fragment,knownUri2prefixIndexMap,nsContext);
}

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

private OnWire adaptM(Marshaller m,InMemory v) throws JAXBException {
  XMLSerializer serializer = ((MarshallerImpl)m).serializer;
  serializer.pushCoordinator();
  try {
    return _adaptM(serializer, v);
  } finally {
    serializer.popCoordinator();
  }
}

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

/**
 * Reset this object to write to the specified output.
 *
 * @param schemaLocation
 *      if non-null, this value is printed on the root element as xsi:schemaLocation
 * @param noNsSchemaLocation
 *      Similar to 'schemaLocation' but this one works for xsi:noNamespaceSchemaLocation
 */
public void startDocument(XmlOutput out,boolean fragment,String schemaLocation,String noNsSchemaLocation) throws IOException, SAXException, XMLStreamException {
  pushCoordinator();
  nsContext.reset();
  nse = nsContext.getCurrent();
  if(attachmentMarshaller!=null && attachmentMarshaller.isXOPPackage())
    out = new MTOMXmlOutput(out);
  this.out = out;
  objectsWithId.clear();
  idReferencedObjects.clear();
  textHasAlreadyPrinted = false;
  seenRoot = false;
  this.schemaLocation = schemaLocation;
  this.noNsSchemaLocation = noNsSchemaLocation;
  this.fragment = fragment;
  this.inlineBinaryFlag = false;
  this.expectedMimeType = null;
  cycleDetectionStack.reset();
  out.startDocument(this,fragment,knownUri2prefixIndexMap,nsContext);
}

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

private OnWire adaptM(Marshaller m,InMemory v) throws JAXBException {
  XMLSerializer serializer = ((MarshallerImpl)m).serializer;
  serializer.pushCoordinator();
  try {
    return _adaptM(serializer, v);
  } finally {
    serializer.popCoordinator();
  }
}

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

private OnWire adaptM(Marshaller m,InMemory v) throws JAXBException {
  XMLSerializer serializer = ((MarshallerImpl)m).serializer;
  serializer.pushCoordinator();
  try {
    return _adaptM(serializer, v);
  } finally {
    serializer.popCoordinator();
  }
}

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

/**
 * Reset this object to write to the specified output.
 *
 * @param schemaLocation
 *      if non-null, this value is printed on the root element as xsi:schemaLocation
 * @param noNsSchemaLocation
 *      Similar to 'schemaLocation' but this one works for xsi:noNamespaceSchemaLocation
 */
public void startDocument(XmlOutput out,boolean fragment,String schemaLocation,String noNsSchemaLocation) throws IOException, SAXException, XMLStreamException {
  pushCoordinator();
  nsContext.reset();
  nse = nsContext.getCurrent();
  if(attachmentMarshaller!=null && attachmentMarshaller.isXOPPackage())
    out = new MTOMXmlOutput(out);
  this.out = out;
  objectsWithId.clear();
  idReferencedObjects.clear();
  textHasAlreadyPrinted = false;
  seenRoot = false;
  this.schemaLocation = schemaLocation;
  this.noNsSchemaLocation = noNsSchemaLocation;
  this.fragment = fragment;
  this.inlineBinaryFlag = false;
  this.expectedMimeType = null;
  cycleDetectionStack.reset();
  out.startDocument(this,fragment,knownUri2prefixIndexMap,nsContext);
}

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

/**
 * Reset this object to write to the specified output.
 *
 * @param schemaLocation
 *      if non-null, this value is printed on the root element as xsi:schemaLocation
 * @param noNsSchemaLocation
 *      Similar to 'schemaLocation' but this one works for xsi:noNamespaceSchemaLocation
 */
public void startDocument(XmlOutput out,boolean fragment,String schemaLocation,String noNsSchemaLocation) throws IOException, SAXException, XMLStreamException {
  pushCoordinator();
  nsContext.reset();
  nse = nsContext.getCurrent();
  if(attachmentMarshaller!=null && attachmentMarshaller.isXOPPackage())
    out = new MTOMXmlOutput(out);
  this.out = out;
  objectsWithId.clear();
  idReferencedObjects.clear();
  textHasAlreadyPrinted = false;
  seenRoot = false;
  this.schemaLocation = schemaLocation;
  this.noNsSchemaLocation = noNsSchemaLocation;
  this.fragment = fragment;
  this.inlineBinaryFlag = false;
  this.expectedMimeType = null;
  cycleDetectionStack.reset();
  out.startDocument(this,fragment,knownUri2prefixIndexMap,nsContext);
}

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