congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
SerializationHandler.endElement
Code IndexAdd Tabnine to your IDE (free)

How to use
endElement
method
in
org.apache.xml.serializer.SerializationHandler

Best Java code snippets using org.apache.xml.serializer.SerializationHandler.endElement (Showing top 20 results out of 315)

origin: robovm/robovm

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: plutext/docx4j

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: robovm/robovm

/**
 * Pass the call on to the underlying handler
 * @see org.xml.sax.ContentHandler#endElement(String, String, String)
 */
public void endElement(String namespaceURI, String localName, String qName)
  throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
    if (namespaceURI == null && m_firstElementURI != null)
      namespaceURI = m_firstElementURI;
    if (localName == null && m_firstElementLocalName != null)
      localName = m_firstElementLocalName;
  }
  
  m_handler.endElement(namespaceURI, localName, qName);
}
origin: plutext/docx4j

/**
 * Pass the call on to the underlying handler
 * @see org.xml.sax.ContentHandler#endElement(String, String, String)
 */
public void endElement(String namespaceURI, String localName, String qName)
  throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
    if (namespaceURI == null && m_firstElementURI != null)
      namespaceURI = m_firstElementURI;
    if (localName == null && m_firstElementLocalName != null)
      localName = m_firstElementLocalName;
  }
  
  m_handler.endElement(namespaceURI, localName, qName);
}
origin: xalan/xalan

_handler.endElement(qname);
break;
origin: robovm/robovm

this.fSerializer.endElement(
  node.getNamespaceURI(),
  node.getLocalName(),
origin: plutext/docx4j

this.fSerializer.endElement(
  node.getNamespaceURI(),
  node.getLocalName(),
origin: robovm/robovm

rhandler.endElement(nodeNamespace, QName.getLocalPart(nodeName),
          nodeName);
if (null != prefix)
origin: xalan/xalan

rhandler.endElement(nodeNamespace, QName.getLocalPart(nodeName),
          nodeName);
if (null != prefix)
origin: xalan/xalan

rtreeHandler.endElement("", "", dtm.getNodeName(pos));
  rtreeHandler.endElement("", "", dtm.getNodeName(pos));
origin: robovm/robovm

rhandler.endElement(getNamespace(), getLocalName(), getRawName());
origin: robovm/robovm

transformer.getResultTreeHandler().endElement(ns, localName,
                       dtm.getNodeName(sourceNode));
origin: xalan/xalan

rhandler.endElement(getNamespace(), getLocalName(), getRawName());
origin: xalan/xalan

handler.endElement(name);
origin: xalan/xalan

transformer.getResultTreeHandler().endElement(ns, localName,
                       dtm.getNodeName(sourceNode));
origin: ibinti/bugvm

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: xalan/serializer

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: org.docx4j/docx4j

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: com.gluonhq/robovm-rt

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
origin: org.apache.xalan/serializer

/**
 * Pass the call on to the underlying handler
 * @see ExtendedContentHandler#endElement(String)
 */
public void endElement(String elementName) throws SAXException
{
  if (m_firstTagNotEmitted)
  {
    flush();
  }
  m_handler.endElement(elementName);
}
org.apache.xml.serializerSerializationHandlerendElement

Popular methods of SerializationHandler

  • close
  • flushPending
    A SerializationHandler accepts SAX-like events, so it can accumulate attributes or namespace nodes a
  • getTransformer
    Get the transformer associated with the serializer.
  • setContentHandler
    Set the SAX Content handler that the serializer sends its output to. This method only applies to a T
  • setEncoding
  • setEscaping
    Turns special character escaping on/off. Note that characters will never, even if this option is set
  • setIndent
  • setIndentAmount
    Set the number of spaces to indent for each indentation level.
  • setOmitXMLDeclaration
  • setTransformer
    Set the transformer associated with the serializer.
  • setVersion
  • getEncoding
  • setVersion,
  • getEncoding,
  • setCdataSectionElements,
  • setDoctypePublic,
  • setDoctypeSystem,
  • setMediaType,
  • setStandalone,
  • serialize,
  • addAttribute,
  • asDOMSerializer

Popular in Java

  • Reading from database using SQL prepared statement
  • getExternalFilesDir (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Top plugins for WebStorm
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