Tabnine Logo
SerializerBase.fireEndDoc
Code IndexAdd Tabnine to your IDE (free)

How to use
fireEndDoc
method
in
org.apache.xml.serializer.SerializerBase

Best Java code snippets using org.apache.xml.serializer.SerializerBase.fireEndDoc (Showing top 12 results out of 315)

origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receives notification of the end of the document.
 * @see org.xml.sax.ContentHandler#endDocument()
 */
public void endDocument() throws SAXException
{
  flushPending();
  // Close output document
  m_saxHandler.endDocument();
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receives notification of the end of the document.
 * @see org.xml.sax.ContentHandler#endDocument()
 */
public void endDocument() throws SAXException
{
  flushPending();
  // Close output document
  m_saxHandler.endDocument();
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * From XSLTC
 * @see org.xml.sax.ContentHandler#endDocument()
 */
public void endDocument() throws SAXException { 
  
  flushPending();
  m_saxHandler.endDocument();
  
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * From XSLTC
 * @see org.xml.sax.ContentHandler#endDocument()
 */
public void endDocument() throws SAXException { 
  
  flushPending();
  m_saxHandler.endDocument();
  
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of the end of a document.
 *
 * <p>The SAX parser will invoke this method only once, and it will
 * be the last method invoked during the parse.  The parser shall
 * not invoke this method until it has either abandoned parsing
 * (because of an unrecoverable error) or reached the end of
 * input.</p>
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 *
 *
 */
public void endDocument() throws SAXException
{
  flushPending();
  // Close output document
  m_saxHandler.endDocument();
  if (m_tracer != null)
    super.fireEndDoc();        
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of the end of a document.
 *
 * <p>The SAX parser will invoke this method only once, and it will
 * be the last method invoked during the parse.  The parser shall
 * not invoke this method until it has either abandoned parsing
 * (because of an unrecoverable error) or reached the end of
 * input.</p>
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 *
 *
 */
public void endDocument() throws SAXException
{
  flushPending();
  // Close output document
  m_saxHandler.endDocument();
  if (m_tracer != null)
    super.fireEndDoc();        
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of the end of a document.
 *
 * <p>The SAX parser will invoke this method only once, and it will
 * be the last method invoked during the parse.  The parser shall
 * not invoke this method until it has either abandoned parsing
 * (because of an unrecoverable error) or reached the end of
 * input.</p>
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void endDocument() throws org.xml.sax.SAXException
{
 flushPending();
 flushWriter();
 if (m_tracer != null)
   super.fireEndDoc();
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of the end of a document.
 *
 * <p>The SAX parser will invoke this method only once, and it will
 * be the last method invoked during the parse.  The parser shall
 * not invoke this method until it has either abandoned parsing
 * (because of an unrecoverable error) or reached the end of
 * input.</p>
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void endDocument() throws org.xml.sax.SAXException
{
 flushPending();
 flushWriter();
 if (m_tracer != null)
   super.fireEndDoc();
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of the end of a document. 
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public final void endDocument() throws org.xml.sax.SAXException
{
  
  flushPending();
  if (m_doIndent && !m_isprevtext)
  {
    try
    {
    outputLineSep();
    }
    catch(IOException e)
    {
      throw new SAXException(e);
    }
  }
  flushWriter();
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of the end of a document. 
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public final void endDocument() throws org.xml.sax.SAXException
{
  
  flushPending();
  if (m_doIndent && !m_isprevtext)
  {
    try
    {
    outputLineSep();
    }
    catch(IOException e)
    {
      throw new SAXException(e);
    }
  }
  flushWriter();
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of the end of a document.
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void endDocument() throws org.xml.sax.SAXException
{
  flushPending();
  if (m_doIndent && !m_isprevtext)
  {
    try
    {
    outputLineSep();
    }
    catch(IOException e)
    {
      throw new SAXException(e);
    }
  }
  flushWriter();
  
  if (m_tracer != null)
    super.fireEndDoc();
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of the end of a document.
 *
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void endDocument() throws org.xml.sax.SAXException
{
  flushPending();
  if (m_doIndent && !m_isprevtext)
  {
    try
    {
    outputLineSep();
    }
    catch(IOException e)
    {
      throw new SAXException(e);
    }
  }
  flushWriter();
  
  if (m_tracer != null)
    super.fireEndDoc();
}
org.apache.xml.serializerSerializerBasefireEndDoc

Javadoc

To fire off end document trace event

Popular methods of SerializerBase

  • setTransformer
    Sets the transformer associated with this serializer
  • addAttributeAlways
    Adds the given attribute to the set of attributes, even if there is no currently open element. This
  • addAttributes
    Add the given attributes to the currently collected ones. These attributes are always added, regardl
  • addCDATAElement
  • characters
  • comment
  • endEntity
    Report the end of an entity.
  • error
  • fatalError
  • fireCDATAEvent
    Report the CDATA trace event
  • fireCharEvent
    Report the characters trace event
  • fireCommentEvent
    Report the comment trace event
  • fireCharEvent,
  • fireCommentEvent,
  • fireEndElem,
  • fireEndEntity,
  • fireEntityReference,
  • fireStartDoc,
  • fireStartElem,
  • flushMyWriter,
  • flushPending,
  • getElementURI

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • runOnUiThread (Activity)
  • getExternalFilesDir (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now