gpt4 book ai didi

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

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

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

WriterConfig.getAutomaticNsPrefix介绍

暂无

代码示例

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

代码示例来源: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: com.fasterxml.woodstox/woodstox-core

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

public RepairingNsStreamWriter(XmlWriter xw, String enc, WriterConfig cfg)
{
  super(xw, enc, cfg, true);
  mAutomaticNsPrefix = cfg.getAutomaticNsPrefix();
}

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

return willAutoCloseOutput() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

代码示例来源: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

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: 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

return automaticEmptyElementsEnabled() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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

return automaticEmptyElementsEnabled() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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

return automaticEmptyElementsEnabled() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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

return willAutoCloseOutput() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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

return willAutoCloseOutput() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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

return willAutoCloseOutput() ? Boolean.TRUE : Boolean.FALSE;
case PROP_AUTOMATIC_NS_PREFIX:
  return getAutomaticNsPrefix();
case PROP_TEXT_ESCAPER:
  return getTextEscaperFactory();

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