当前位置: 首页>>代码示例>>Java>>正文


Java DTMDOMException类代码示例

本文整理汇总了Java中com.sun.org.apache.xml.internal.dtm.DTMDOMException的典型用法代码示例。如果您正苦于以下问题:Java DTMDOMException类的具体用法?Java DTMDOMException怎么用?Java DTMDOMException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DTMDOMException类属于com.sun.org.apache.xml.internal.dtm包,在下文中一共展示了DTMDOMException类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getDocumentElement

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/** This is a bit of a problem in DTM, since a DTM may be a Document
 * Fragment and hence not have a clear-cut Document Element. We can
 * make it work in the well-formed cases but would that be confusing for others?
 *
 *
 * @see org.w3c.dom.Document
 */
@Override
public final Element getDocumentElement()
{
              int dochandle=dtm.getDocument();
              int elementhandle=DTM.NULL;
              for(int kidhandle=dtm.getFirstChild(dochandle);
                              kidhandle!=DTM.NULL;
                              kidhandle=dtm.getNextSibling(kidhandle))
              {
                      switch(dtm.getNodeType(kidhandle))
                      {
                      case Node.ELEMENT_NODE:
                              if(elementhandle!=DTM.NULL)
                              {
                                      elementhandle=DTM.NULL; // More than one; ill-formed.
                                      kidhandle=dtm.getLastChild(dochandle); // End loop
                              }
                              else
                                      elementhandle=kidhandle;
                              break;

                      // These are harmless; document is still wellformed
                      case Node.COMMENT_NODE:
                      case Node.PROCESSING_INSTRUCTION_NODE:
                      case Node.DOCUMENT_TYPE_NODE:
                              break;

                      default:
                              elementhandle=DTM.NULL; // ill-formed
                              kidhandle=dtm.getLastChild(dochandle); // End loop
                              break;
                      }
              }
              if(elementhandle==DTM.NULL)
                      throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
              else
                      return (Element)(dtm.getNode(elementhandle));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:46,代码来源:DTMNodeProxy.java

示例2: nextNode

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/** @return the next node in the set and advance the position of the
 * iterator in the set.
 *
 * @throws DOMException - INVALID_STATE_ERR Raised if this method is
 * called after the detach method was invoked.
 *  */
public Node nextNode() throws DOMException
  {
    if(!valid)
      throw new DTMDOMException(DOMException.INVALID_STATE_ERR);

    int handle=dtm_iter.nextNode();
    if (handle==DTM.NULL)
      return null;
    return dtm_iter.getDTM(handle).getNode(handle);
  }
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:DTMNodeIterator.java

示例3: previousNode

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/** @return the next previous in the set and advance the position of the
 * iterator in the set.
 *
 * @throws DOMException - INVALID_STATE_ERR Raised if this method is
 * called after the detach method was invoked.
 *  */
public Node previousNode()
  {
    if(!valid)
      throw new DTMDOMException(DOMException.INVALID_STATE_ERR);

    int handle=dtm_iter.previousNode();
    if (handle==DTM.NULL)
      return null;
    return dtm_iter.getDTM(handle).getNode(handle);
  }
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:DTMNodeIterator.java

示例4: createDocumentFragment

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/**
 *
 *
 * @see org.w3c.dom.Document
 */
@Override
public final DocumentFragment createDocumentFragment()
{
  throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:DTMNodeProxy.java

示例5: normalize

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/** @see org.w3c.dom.Element */
@Override
public final void normalize()
{
  throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:DTMNodeProxy.java

示例6: setValue

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
/**
 *
 * @param value
 * @see org.w3c.dom.Attr
 */
@Override
public final void setValue(String value)
{
  throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:DTMNodeProxy.java

示例7: createDocumentType

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
@Override
public DocumentType createDocumentType(String qualifiedName,String publicId, String systemId)
{
  throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:6,代码来源:DTMNodeProxy.java

示例8: createDocument

import com.sun.org.apache.xml.internal.dtm.DTMDOMException; //导入依赖的package包/类
@Override
public Document createDocument(String namespaceURI,String qualfiedName,DocumentType doctype)
{
  // Could create a DTM... but why, when it'd have to be permanantly empty?
  throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:7,代码来源:DTMNodeProxy.java


注:本文中的com.sun.org.apache.xml.internal.dtm.DTMDOMException类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。