Codota Logo
ReportInfoNode.setDetail
Code IndexAdd Codota to your IDE (free)

How to use
setDetail
method
in
org.milyn.event.report.model.ReportInfoNode

Best Java code snippets using org.milyn.event.report.model.ReportInfoNode.setDetail (Showing top 4 results out of 315)

  • Common ways to obtain ReportInfoNode
private void myMethod () {
ReportInfoNode r =
  • Codota Iconnew ReportInfoNode()
  • Smart code suggestions by Codota
}
origin: smooks/smooks

private void mapNodeEvents(VisitSequence visitSequence, ReportNode reportNode, MessageNode messageNode) {
  List<ExecutionEvent> events = reportNode.getElementProcessingEvents();
  for (ExecutionEvent event : events) {
    if (event instanceof ElementVisitEvent) {
      ElementVisitEvent visitEvent = (ElementVisitEvent) event;
      if (visitEvent.getSequence() == visitSequence) {
        ReportInfoNode reportInfoNode = new ReportInfoNode();
        ContentHandlerConfigMap configMapping = ((ElementVisitEvent) event).getConfigMapping();
        messageNode.addExecInfoNode(reportInfoNode);
        reportInfoNode.setNodeId(reportInfoNodeCounter);
        reportInfoNode.setSummary(configMapping.getContentHandler().getClass().getSimpleName() + ": " + visitEvent.getReportSummary());
        reportInfoNode.setDetail(visitEvent.getReportDetail());
        reportInfoNode.setResourceXML(configMapping.getResourceConfig().toXML());
        reportInfoNode.setContextState(visitEvent.getExecutionContextState());
        reportInfoNodeCounter++;
      }
    }
  }
}
origin: org.virtuslab/milyn-smooks-core

private void mapNodeEvents(VisitSequence visitSequence, ReportNode reportNode, MessageNode messageNode) {
  List<ExecutionEvent> events = reportNode.getElementProcessingEvents();
  for (ExecutionEvent event : events) {
    if (event instanceof ElementVisitEvent) {
      ElementVisitEvent visitEvent = (ElementVisitEvent) event;
      if (visitEvent.getSequence() == visitSequence) {
        ReportInfoNode reportInfoNode = new ReportInfoNode();
        ContentHandlerConfigMap configMapping = ((ElementVisitEvent) event).getConfigMapping();
        messageNode.addExecInfoNode(reportInfoNode);
        reportInfoNode.setNodeId(reportInfoNodeCounter);
        reportInfoNode.setSummary(configMapping.getContentHandler().getClass().getSimpleName() + ": " + visitEvent.getReportSummary());
        reportInfoNode.setDetail(visitEvent.getReportDetail());
        reportInfoNode.setResourceXML(configMapping.getResourceConfig().toXML());
        reportInfoNode.setContextState(visitEvent.getExecutionContextState());
        reportInfoNodeCounter++;
      }
    }
  }
}
origin: org.milyn/milyn-smooks-core

private void mapNodeEvents(VisitSequence visitSequence, ReportNode reportNode, MessageNode messageNode) {
  List<ExecutionEvent> events = reportNode.getElementProcessingEvents();
  for (ExecutionEvent event : events) {
    if (event instanceof ElementVisitEvent) {
      ElementVisitEvent visitEvent = (ElementVisitEvent) event;
      if (visitEvent.getSequence() == visitSequence) {
        ReportInfoNode reportInfoNode = new ReportInfoNode();
        ContentHandlerConfigMap configMapping = ((ElementVisitEvent) event).getConfigMapping();
        messageNode.addExecInfoNode(reportInfoNode);
        reportInfoNode.setNodeId(reportInfoNodeCounter);
        reportInfoNode.setSummary(configMapping.getContentHandler().getClass().getSimpleName() + ": " + visitEvent.getReportSummary());
        reportInfoNode.setDetail(visitEvent.getReportDetail());
        reportInfoNode.setResourceXML(configMapping.getResourceConfig().toXML());
        reportInfoNode.setContextState(visitEvent.getExecutionContextState());
        reportInfoNodeCounter++;
      }
    }
  }
}
origin: org.milyn/milyn-smooks-all

private void mapNodeEvents(VisitSequence visitSequence, ReportNode reportNode, MessageNode messageNode) {
  List<ExecutionEvent> events = reportNode.getElementProcessingEvents();
  for (ExecutionEvent event : events) {
    if (event instanceof ElementVisitEvent) {
      ElementVisitEvent visitEvent = (ElementVisitEvent) event;
      if (visitEvent.getSequence() == visitSequence) {
        ReportInfoNode reportInfoNode = new ReportInfoNode();
        ContentHandlerConfigMap configMapping = ((ElementVisitEvent) event).getConfigMapping();
        messageNode.addExecInfoNode(reportInfoNode);
        reportInfoNode.setNodeId(reportInfoNodeCounter);
        reportInfoNode.setSummary(configMapping.getContentHandler().getClass().getSimpleName() + ": " + visitEvent.getReportSummary());
        reportInfoNode.setDetail(visitEvent.getReportDetail());
        reportInfoNode.setResourceXML(configMapping.getResourceConfig().toXML());
        reportInfoNode.setContextState(visitEvent.getExecutionContextState());
        reportInfoNodeCounter++;
      }
    }
  }
}
org.milyn.event.report.modelReportInfoNodesetDetail

Popular methods of ReportInfoNode

  • <init>
  • setContextState
  • setNodeId
  • setResourceXML
  • setSummary

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now