gpt4 book ai didi

com.ctc.wstx.api.WriterConfig.willSupportNamespaces()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-26 00:45:05 25 4
gpt4 key购买 nike

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

WriterConfig.willSupportNamespaces介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

/**
 * Called by {@link #createSW(OutputStream, Writer, String, boolean)} after all of the nessesary configuration
 * logic is complete.
 */
protected XMLStreamWriter2 createSW(String enc, WriterConfig cfg, XmlWriter xw) {
  if (cfg.willSupportNamespaces()) {
    if (cfg.automaticNamespacesEnabled()) {
      return new RepairingNsStreamWriter(xw, enc, cfg);
    }
    return new SimpleNsStreamWriter(xw, enc, cfg);
  }
  return new NonNsStreamWriter(xw, enc, cfg);
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

private WstxDOMWrappingWriter(WriterConfig cfg, Node treeRoot)
  throws XMLStreamException
{
  super(treeRoot, cfg.willSupportNamespaces(), cfg.automaticNamespacesEnabled());
  mConfig = cfg;
  mAutoNsSeq = null;
  mAutomaticNsPrefix = mNsRepairing ? mConfig.getAutomaticNsPrefix() : null;
  /* Ok; we need a document node; or an element node; or a document
   * fragment node.
   */
  switch (treeRoot.getNodeType()) {
  case Node.DOCUMENT_NODE:
  case Node.DOCUMENT_FRAGMENT_NODE:
    // both are ok, but no current element
    mCurrElem = DOMOutputElement.createRoot(treeRoot);
    mOpenElement = null;
    break;
  case Node.ELEMENT_NODE: // can make sub-tree... ok
    {
      // still need a virtual root node as parent
      DOMOutputElement root = DOMOutputElement.createRoot(treeRoot);
      Element elem = (Element) treeRoot;
      mOpenElement = mCurrElem = root.createChild(elem);
    }
    break;
  default: // other Nodes not usable
    throw new XMLStreamException("Can not create an XMLStreamWriter for a DOM node of type "+treeRoot.getClass());
  }
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

代码示例来源:origin: woodstox/wstx-lgpl

mNsAware = cfg.willSupportNamespaces();
mNsRepairing = mNsAware && cfg.automaticNamespacesEnabled();

代码示例来源:origin: woodstox/wstx-asl

mNsAware = cfg.willSupportNamespaces();
mNsRepairing = mNsAware && cfg.automaticNamespacesEnabled();

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.woodstox

mNsAware = cfg.willSupportNamespaces();
mNsRepairing = mNsAware && cfg.automaticNamespacesEnabled();

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl

private WstxDOMWrappingWriter(WriterConfig cfg, Node treeRoot)
  throws XMLStreamException
{
  super(treeRoot, cfg.willSupportNamespaces(), cfg.automaticNamespacesEnabled());
  mConfig = cfg;
  mAutoNsSeq = null;
  mAutomaticNsPrefix = mNsRepairing ? mConfig.getAutomaticNsPrefix() : null;
  /* Ok; we need a document node; or an element node; or a document
   * fragment node.
   */
  switch (treeRoot.getNodeType()) {
  case Node.DOCUMENT_NODE:
  case Node.DOCUMENT_FRAGMENT_NODE:
    // both are ok, but no current element
    mCurrElem = DOMOutputElement.createRoot(treeRoot);
    mOpenElement = null;
    break;
  case Node.ELEMENT_NODE: // can make sub-tree... ok
    {
      // still need a virtual root node as parent
      DOMOutputElement root = DOMOutputElement.createRoot(treeRoot);
      Element elem = (Element) treeRoot;
      mOpenElement = mCurrElem = root.createChild(elem);
    }
    break;
  default: // other Nodes not usable
    throw new XMLStreamException("Can not create an XMLStreamWriter for a DOM node of type "+treeRoot.getClass());
  }
}

代码示例来源:origin: Nextdoor/bender

/**
 * Called by {@link #createSW(OutputStream, Writer, String, boolean)} after all of the nessesary configuration
 * logic is complete.
 */
protected XMLStreamWriter2 createSW(String enc, WriterConfig cfg, XmlWriter xw) {
  if (cfg.willSupportNamespaces()) {
    if (cfg.automaticNamespacesEnabled()) {
      return new RepairingNsStreamWriter(xw, enc, cfg);
    }
    return new SimpleNsStreamWriter(xw, enc, cfg);
  }
  return new NonNsStreamWriter(xw, enc, cfg);
}

代码示例来源:origin: Nextdoor/bender

private WstxDOMWrappingWriter(WriterConfig cfg, Node treeRoot)
  throws XMLStreamException
{
  super(treeRoot, cfg.willSupportNamespaces(), cfg.automaticNamespacesEnabled());
  mConfig = cfg;
  mAutoNsSeq = null;
  mAutomaticNsPrefix = mNsRepairing ? mConfig.getAutomaticNsPrefix() : null;
  /* Ok; we need a document node; or an element node; or a document
   * fragment node.
   */
  switch (treeRoot.getNodeType()) {
  case Node.DOCUMENT_NODE:
  case Node.DOCUMENT_FRAGMENT_NODE:
    // both are ok, but no current element
    mCurrElem = DOMOutputElement.createRoot(treeRoot);
    mOpenElement = null;
    break;
  case Node.ELEMENT_NODE: // can make sub-tree... ok
    {
      // still need a virtual root node as parent
      DOMOutputElement root = DOMOutputElement.createRoot(treeRoot);
      Element elem = (Element) treeRoot;
      mOpenElement = mCurrElem = root.createChild(elem);
    }
    break;
  default: // other Nodes not usable
    throw new XMLStreamException("Can not create an XMLStreamWriter for a DOM node of type "+treeRoot.getClass());
  }
}

代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl

/**
 * Called by {@link #createSW(OutputStream, Writer, String, boolean)} after all of the nessesary configuration
 * logic is complete.
 */
protected XMLStreamWriter2 createSW(String enc, WriterConfig cfg, XmlWriter xw) {
  if (cfg.willSupportNamespaces()) {
    if (cfg.automaticNamespacesEnabled()) {
      return new RepairingNsStreamWriter(xw, enc, cfg);
    }
    return new SimpleNsStreamWriter(xw, enc, cfg);
  }
  return new NonNsStreamWriter(xw, enc, cfg);
}

代码示例来源:origin: com.fasterxml.woodstox/woodstox-core

/**
 * Called by {@link #createSW(OutputStream, Writer, String, boolean)} after all of the nessesary configuration
 * logic is complete.
 */
protected XMLStreamWriter2 createSW(String enc, WriterConfig cfg, XmlWriter xw) {
  if (cfg.willSupportNamespaces()) {
    if (cfg.automaticNamespacesEnabled()) {
      return new RepairingNsStreamWriter(xw, enc, cfg);
    }
    return new SimpleNsStreamWriter(xw, enc, cfg);
  }
  return new NonNsStreamWriter(xw, enc, cfg);
}

代码示例来源:origin: FasterXML/woodstox

/**
 * Called by {@link #createSW(OutputStream, Writer, String, boolean)} after all of the nessesary configuration
 * logic is complete.
 */
protected XMLStreamWriter2 createSW(String enc, WriterConfig cfg, XmlWriter xw) {
  if (cfg.willSupportNamespaces()) {
    if (cfg.automaticNamespacesEnabled()) {
      return new RepairingNsStreamWriter(xw, enc, cfg);
    }
    return new SimpleNsStreamWriter(xw, enc, cfg);
  }
  return new NonNsStreamWriter(xw, enc, cfg);
}

代码示例来源:origin: com.fasterxml.woodstox/woodstox-core

private WstxDOMWrappingWriter(WriterConfig cfg, Node treeRoot)
  throws XMLStreamException
{
  super(treeRoot, cfg.willSupportNamespaces(), cfg.automaticNamespacesEnabled());
  mConfig = cfg;
  mAutoNsSeq = null;
  mAutomaticNsPrefix = mNsRepairing ? mConfig.getAutomaticNsPrefix() : null;
  /* Ok; we need a document node; or an element node; or a document
   * fragment node.
   */
  switch (treeRoot.getNodeType()) {
  case Node.DOCUMENT_NODE:
  case Node.DOCUMENT_FRAGMENT_NODE:
    // both are ok, but no current element
    mCurrElem = DOMOutputElement.createRoot(treeRoot);
    mOpenElement = null;
    break;
  case Node.ELEMENT_NODE: // can make sub-tree... ok
    {
      // still need a virtual root node as parent
      DOMOutputElement root = DOMOutputElement.createRoot(treeRoot);
      Element elem = (Element) treeRoot;
      mOpenElement = mCurrElem = root.createChild(elem);
    }
    break;
  default: // other Nodes not usable
    throw new XMLStreamException("Can not create an XMLStreamWriter for a DOM node of type "+treeRoot.getClass());
  }
}

代码示例来源:origin: FasterXML/woodstox

private WstxDOMWrappingWriter(WriterConfig cfg, Node treeRoot)
  throws XMLStreamException
{
  super(treeRoot, cfg.willSupportNamespaces(), cfg.automaticNamespacesEnabled());
  mConfig = cfg;
  mAutoNsSeq = null;
  mAutomaticNsPrefix = mNsRepairing ? mConfig.getAutomaticNsPrefix() : null;
  /* Ok; we need a document node; or an element node; or a document
   * fragment node.
   */
  switch (treeRoot.getNodeType()) {
  case Node.DOCUMENT_NODE:
  case Node.DOCUMENT_FRAGMENT_NODE:
    // both are ok, but no current element
    mCurrElem = DOMOutputElement.createRoot(treeRoot);
    mOpenElement = null;
    break;
  case Node.ELEMENT_NODE: // can make sub-tree... ok
    {
      // still need a virtual root node as parent
      DOMOutputElement root = DOMOutputElement.createRoot(treeRoot);
      Element elem = (Element) treeRoot;
      mOpenElement = mCurrElem = root.createChild(elem);
    }
    break;
  default: // other Nodes not usable
    throw new XMLStreamException("Can not create an XMLStreamWriter for a DOM node of type "+treeRoot.getClass());
  }
}

代码示例来源:origin: woodstox/wstx-asl

if (cfg.willSupportNamespaces()) {
  if (cfg.automaticNamespacesEnabled()) {
    return new RepairingNsStreamWriter(xw, enc, cfg);

代码示例来源:origin: woodstox/wstx-asl

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

代码示例来源:origin: woodstox/wstx-lgpl

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.woodstox

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

代码示例来源:origin: com.fasterxml.woodstox/woodstox-core

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

代码示例来源:origin: Nextdoor/bender

return willSupportNamespaces() ? Boolean.TRUE : Boolean.FALSE;
case PROP_PROBLEM_REPORTER:
  return getProblemReporter();

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