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

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

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

origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * From XSLTC
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 */
public void processingInstruction(String arg0, String arg1)
  throws SAXException
{
  if (m_tracer != null)
    super.fireEscapingEvent(arg0, arg1);
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * From XSLTC
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 */
public void processingInstruction(String arg0, String arg1)
  throws SAXException
{
  if (m_tracer != null)
    super.fireEscapingEvent(arg0, arg1);
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 *
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 * Send a processing instruction to the output document
 */
public void processingInstruction(String target, String data)
  throws SAXException
{
  flushPending();
  // Pass the processing instruction to the SAX handler
  m_saxHandler.processingInstruction(target, data);
  // we don't want to leave serializer to fire off this event,
  // so do it here.
  if (m_tracer != null)
    super.fireEscapingEvent(target, data);
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 *
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 * Send a processing instruction to the output document
 */
public void processingInstruction(String target, String data)
  throws SAXException
{
  flushPending();
  // Pass the processing instruction to the SAX handler
  m_saxHandler.processingInstruction(target, data);
  // we don't want to leave serializer to fire off this event,
  // so do it here.
  if (m_tracer != null)
    super.fireEscapingEvent(target, data);
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of a processing instruction.
 *
 * <p>The Parser will invoke this method once for each processing
 * instruction found: note that processing instructions may occur
 * before or after the main document element.</p>
 *
 * <p>A SAX parser should never report an XML declaration (XML 1.0,
 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
 * using this method.</p>
 *
 * @param target The processing instruction target.
 * @param data The processing instruction data, or null if
 *        none was supplied.
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void processingInstruction(String target, String data)
    throws org.xml.sax.SAXException
{
 // flush anything pending first
 flushPending();  
 
 if (m_tracer != null)
   super.fireEscapingEvent(target, data);  
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of a processing instruction.
 *
 * <p>The Parser will invoke this method once for each processing
 * instruction found: note that processing instructions may occur
 * before or after the main document element.</p>
 *
 * <p>A SAX parser should never report an XML declaration (XML 1.0,
 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
 * using this method.</p>
 *
 * @param target The processing instruction target.
 * @param data The processing instruction data, or null if
 *        none was supplied.
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 */
public void processingInstruction(String target, String data)
    throws org.xml.sax.SAXException
{
 // flush anything pending first
 flushPending();  
 
 if (m_tracer != null)
   super.fireEscapingEvent(target, data);  
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Receive notification of a processing instruction.
 *
 * <p>The Parser will invoke this method once for each processing
 * instruction found: note that processing instructions may occur
 * before or after the main document element.</p>
 *
 * <p>A SAX parser should never report an XML declaration (XML 1.0,
 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
 * using this method.</p>
 *
 * @param target The processing instruction target.
 * @param data The processing instruction data, or null if
 *        none was supplied.
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 */
public void processingInstruction(String target, String data)
  throws SAXException
{
  flushPending();
  m_saxHandler.processingInstruction(target,data);
  // time to fire off processing instruction event
  
  if (m_tracer != null)		
    super.fireEscapingEvent(target,data);        
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

/**
 * Receive notification of a processing instruction.
 *
 * <p>The Parser will invoke this method once for each processing
 * instruction found: note that processing instructions may occur
 * before or after the main document element.</p>
 *
 * <p>A SAX parser should never report an XML declaration (XML 1.0,
 * section 2.8) or a text declaration (XML 1.0, section 4.3.1)
 * using this method.</p>
 *
 * @param target The processing instruction target.
 * @param data The processing instruction data, or null if
 *        none was supplied.
 * @throws org.xml.sax.SAXException Any SAX exception, possibly
 *            wrapping another exception.
 *
 * @throws org.xml.sax.SAXException
 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
 */
public void processingInstruction(String target, String data)
  throws SAXException
{
  flushPending();
  m_saxHandler.processingInstruction(target,data);
  // time to fire off processing instruction event
  
  if (m_tracer != null)		
    super.fireEscapingEvent(target,data);        
}
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

super.fireEscapingEvent(target, data);  
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

super.fireEscapingEvent(target, data);  
origin: org.apache.xalan/com.springsource.org.apache.xml.serializer

super.fireEscapingEvent(target, data);
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

super.fireEscapingEvent(target, data);
org.apache.xml.serializerSerializerBasefireEscapingEvent

Javadoc

To fire off the PI 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

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • scheduleAtFixedRate (Timer)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JFileChooser (javax.swing)
  • 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