Tabnine Logo
SmooksContentHandler.replay
Code IndexAdd Tabnine to your IDE (free)

How to use
replay
method
in
org.milyn.delivery.SmooksContentHandler

Best Java code snippets using org.milyn.delivery.SmooksContentHandler.replay (Showing top 12 results out of 315)

origin: smooks/smooks

public void replayStartElement() {
  // Replay the last sax event from the parent handler on this sax handler...
  parentContentHandler.replay(this);
}
origin: org.milyn/milyn-smooks-core

public void replayStartElement() {
  // Replay the last sax event from the parent handler on this sax handler...
  parentContentHandler.replay(this);
}
origin: org.virtuslab/milyn-smooks-core

public void replayStartElement() {
  // Replay the last sax event from the parent handler on this sax handler...
  parentContentHandler.replay(this);
}
origin: org.milyn/milyn-smooks-all

public void replayStartElement() {
  // Replay the last sax event from the parent handler on this sax handler...
  parentContentHandler.replay(this);
}
origin: org.milyn/milyn-smooks-all

@Override
public final void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
  getNamespaceDeclarationStack().pushNamespaces(qName, uri, attributes);
  startEvent.set(uri, localName, qName, attributes);
  lastEvent = startEvent;
  depth++;
  startElement(startEvent);
  if(nestedContentHandler != null) {
    // Replay the start element event from the parent handler onto the nested handler...
    replay(nestedContentHandler);
  }
}
origin: org.virtuslab/milyn-smooks-core

@Override
public final void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
  getNamespaceDeclarationStack().pushNamespaces(qName, uri, attributes);
  startEvent.set(uri, localName, qName, attributes);
  lastEvent = startEvent;
  depth++;
  startElement(startEvent);
  if(nestedContentHandler != null) {
    // Replay the start element event from the parent handler onto the nested handler...
    replay(nestedContentHandler);
  }
}
origin: smooks/smooks

@Override
public final void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
  getNamespaceDeclarationStack().pushNamespaces(qName, uri, attributes);
  startEvent.set(uri, localName, qName, attributes);
  lastEvent = startEvent;
  depth++;
  startElement(startEvent);
  if(nestedContentHandler != null) {
    // Replay the start element event from the parent handler onto the nested handler...
    replay(nestedContentHandler);
  }
}
origin: org.milyn/milyn-smooks-core

@Override
public final void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
  getNamespaceDeclarationStack().pushNamespaces(qName, uri, attributes);
  startEvent.set(uri, localName, qName, attributes);
  lastEvent = startEvent;
  depth++;
  startElement(startEvent);
  if(nestedContentHandler != null) {
    // Replay the start element event from the parent handler onto the nested handler...
    replay(nestedContentHandler);
  }
}
origin: org.milyn/milyn-smooks-all

@Override
public final void endElement(String uri, String localName, String qName) throws SAXException {
  try {
    endEvent.set(uri, localName, qName);
    lastEvent = endEvent;
    endElement(endEvent);
    depth--;
  } finally {
    if(!endReplayed && depth == 0 && parentContentHandler != null) {
      endReplayed = true;
      // Replay the last sax event from this handler onto the parent handler ...
      replay(parentContentHandler);
      // Reinstate the parent handler on the XMLReader so all events are
      // forwarded to it again ...
      XMLReader xmlReader = AbstractParser.getXMLReader(executionContext);
      xmlReader.setContentHandler(parentContentHandler);
      // Remove the nested handler (this handler) form the parent handler...
      parentContentHandler.resetNestedContentHandler();
    }
  }
  getNamespaceDeclarationStack().popNamespaces();
}
origin: org.virtuslab/milyn-smooks-core

@Override
public final void endElement(String uri, String localName, String qName) throws SAXException {
  try {
    endEvent.set(uri, localName, qName);
    lastEvent = endEvent;
    endElement(endEvent);
    depth--;
  } finally {
    if(!endReplayed && depth == 0 && parentContentHandler != null) {
      endReplayed = true;
      // Replay the last sax event from this handler onto the parent handler ...
      replay(parentContentHandler);
      // Reinstate the parent handler on the XMLReader so all events are
      // forwarded to it again ...
      XMLReader xmlReader = AbstractParser.getXMLReader(executionContext);
      xmlReader.setContentHandler(parentContentHandler);
      // Remove the nested handler (this handler) form the parent handler...
      parentContentHandler.resetNestedContentHandler();
    }
  }
  getNamespaceDeclarationStack().popNamespaces();
}
origin: smooks/smooks

@Override
public final void endElement(String uri, String localName, String qName) throws SAXException {
  try {
    endEvent.set(uri, localName, qName);
    lastEvent = endEvent;
    endElement(endEvent);
    depth--;
  } finally {
    if(!endReplayed && depth == 0 && parentContentHandler != null) {
      endReplayed = true;
      // Replay the last sax event from this handler onto the parent handler ...
      replay(parentContentHandler);
      // Reinstate the parent handler on the XMLReader so all events are
      // forwarded to it again ...
      XMLReader xmlReader = AbstractParser.getXMLReader(executionContext);
      xmlReader.setContentHandler(parentContentHandler);
      // Remove the nested handler (this handler) form the parent handler...
      parentContentHandler.resetNestedContentHandler();
    }
  }
  getNamespaceDeclarationStack().popNamespaces();
}
origin: org.milyn/milyn-smooks-core

@Override
public final void endElement(String uri, String localName, String qName) throws SAXException {
  try {
    endEvent.set(uri, localName, qName);
    lastEvent = endEvent;
    endElement(endEvent);
    depth--;
  } finally {
    if(!endReplayed && depth == 0 && parentContentHandler != null) {
      endReplayed = true;
      // Replay the last sax event from this handler onto the parent handler ...
      replay(parentContentHandler);
      // Reinstate the parent handler on the XMLReader so all events are
      // forwarded to it again ...
      XMLReader xmlReader = AbstractParser.getXMLReader(executionContext);
      xmlReader.setContentHandler(parentContentHandler);
      // Remove the nested handler (this handler) form the parent handler...
      parentContentHandler.resetNestedContentHandler();
    }
  }
  getNamespaceDeclarationStack().popNamespaces();
}
org.milyn.deliverySmooksContentHandlerreplay

Popular methods of SmooksContentHandler

  • attachHandler
  • endElement
  • getExecutionContext
  • getHandler
  • getNamespaceDeclarationStack
  • getNestedContentHandler
  • resetNestedContentHandler
  • startDocument
  • startElement

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • requestLocationUpdates (LocationManager)
  • getSystemService (Context)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Best plugins for Eclipse
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