com.sun.org.apache.xml.internal.utils.IntStack Java Examples

The following examples show how to use com.sun.org.apache.xml.internal.utils.IntStack. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SAX2RTFDTM.java    From JDKSourceCode1.8 with MIT License 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #2
Source File: SAX2RTFDTM.java    From Bytecoder with Apache License 2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new Vector<>();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #3
Source File: SAX2RTFDTM.java    From jdk1.8-source-analysis with Apache License 2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #4
Source File: SAX2RTFDTM.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #5
Source File: SAX2RTFDTM.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #6
Source File: SAX2RTFDTM.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #7
Source File: SAX2RTFDTM.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #8
Source File: SAX2RTFDTM.java    From openjdk-8-source with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #9
Source File: SAX2RTFDTM.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #10
Source File: SAX2RTFDTM.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #11
Source File: SAX2RTFDTM.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Receive notification of the beginning of a new RTF document.
 *
 * %REVIEW% Y'know, this isn't all that much of a deoptimization. We
 * might want to consider folding the start/endDocument changes back
 * into the main SAX2DTM so we don't have to expose so many fields
 * (even as Protected) and carry the additional code.
 *
 * @throws SAXException Any SAX exception, possibly
 *            wrapping another exception.
 * @see org.xml.sax.ContentHandler#startDocument
 * */
public void startDocument() throws SAXException
{
  // Re-initialize the tree append process
  m_endDocumentOccured = false;
  m_prefixMappings = new java.util.Vector();
  m_contextIndexes = new IntStack();
  m_parents = new IntStack();

  m_currentDocumentNode=m_size;
  super.startDocument();
}
 
Example #12
Source File: XPathContext.java    From openjdk-8 with GNU General Public License v2.0 votes vote down vote up
public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } 
Example #13
Source File: XPathContext.java    From openjdk-8-source with GNU General Public License v2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #14
Source File: XPathContext.java    From Bytecoder with Apache License 2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #15
Source File: XPathContext.java    From Bytecoder with Apache License 2.0 votes vote down vote up
public IntStack getCurrentExpressionNodeStack() { return m_currentExpressionNodes; } 
Example #16
Source File: XPathContext.java    From openjdk-8 with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentExpressionNodeStack() { return m_currentExpressionNodes; } 
Example #17
Source File: XPathContext.java    From Bytecoder with Apache License 2.0 votes vote down vote up
public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } 
Example #18
Source File: XPathContext.java    From openjdk-8 with GNU General Public License v2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #19
Source File: XPathContext.java    From openjdk-8 with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentNodeStack() {return m_currentNodes; } 
Example #20
Source File: XPathContext.java    From openjdk-jdk9 with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentNodeStack() {return m_currentNodes; } 
Example #21
Source File: XPathContext.java    From openjdk-jdk9 with GNU General Public License v2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #22
Source File: XPathContext.java    From openjdk-jdk9 with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentExpressionNodeStack() { return m_currentExpressionNodes; } 
Example #23
Source File: XPathContext.java    From openjdk-jdk9 with GNU General Public License v2.0 votes vote down vote up
public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } 
Example #24
Source File: XPathContext.java    From hottub with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentNodeStack() {return m_currentNodes; } 
Example #25
Source File: XPathContext.java    From hottub with GNU General Public License v2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #26
Source File: XPathContext.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 votes vote down vote up
public void setCurrentNodeStack(IntStack nv) { m_currentNodes = nv; } 
Example #27
Source File: XPathContext.java    From hottub with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentExpressionNodeStack() { return m_currentExpressionNodes; } 
Example #28
Source File: XPathContext.java    From hottub with GNU General Public License v2.0 votes vote down vote up
public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } 
Example #29
Source File: XPathContext.java    From openjdk-8-source with GNU General Public License v2.0 votes vote down vote up
public void setCurrentExpressionNodeStack(IntStack nv) { m_currentExpressionNodes = nv; } 
Example #30
Source File: XPathContext.java    From openjdk-8-source with GNU General Public License v2.0 votes vote down vote up
public IntStack getCurrentNodeStack() {return m_currentNodes; }