Humboldt Alignment Editor 2.5.0

Uses of Interface
eu.esdihumboldt.hale.common.core.report.Report

Packages that use Report
eu.esdihumboldt.hale.common.align.transformation.report   
eu.esdihumboldt.hale.common.align.transformation.report.impl   
eu.esdihumboldt.hale.common.core.io.report   
eu.esdihumboldt.hale.common.core.io.report.impl   
eu.esdihumboldt.hale.common.core.report   
eu.esdihumboldt.hale.common.core.report.impl   
eu.esdihumboldt.hale.common.core.report.writer   
eu.esdihumboldt.hale.common.headless.report   
eu.esdihumboldt.hale.common.instancevalidator.report   
eu.esdihumboldt.hale.common.instancevalidator.report.impl   
eu.esdihumboldt.hale.ui   
eu.esdihumboldt.hale.ui.service.report   
eu.esdihumboldt.hale.ui.service.report.internal   
eu.esdihumboldt.hale.ui.views.report   
eu.esdihumboldt.hale.ui.views.report.properties.details   
eu.esdihumboldt.hale.ui.views.report.properties.details.extension   
eu.esdihumboldt.hale.ui.views.report.properties.summary   
 

Uses of Report in eu.esdihumboldt.hale.common.align.transformation.report
 

Subinterfaces of Report in eu.esdihumboldt.hale.common.align.transformation.report
 interface TransformationReport
          TODO Type description
 interface TransformationReporter
          Reporter for transformation messages
 

Uses of Report in eu.esdihumboldt.hale.common.align.transformation.report.impl
 

Classes in eu.esdihumboldt.hale.common.align.transformation.report.impl that implement Report
 class DefaultTransformationReporter
          Reporter for transformation messages
 

Uses of Report in eu.esdihumboldt.hale.common.core.io.report
 

Subinterfaces of Report in eu.esdihumboldt.hale.common.core.io.report
 interface IOReport
          Report for I/O tasks
 interface IOReporter
          Reporter for I/O providers
 

Uses of Report in eu.esdihumboldt.hale.common.core.io.report.impl
 

Classes in eu.esdihumboldt.hale.common.core.io.report.impl that implement Report
 class DefaultIOReporter
          Default I/O report implementation
 

Uses of Report in eu.esdihumboldt.hale.common.core.report
 

Classes in eu.esdihumboldt.hale.common.core.report with type parameters of type Report
 interface ReportDefinition<T extends Report<?>>
          String representations of Report are explicitly allowed to span multiple lines.
 

Subinterfaces of Report in eu.esdihumboldt.hale.common.core.report
 interface Reporter<T extends Message>
          Reporter interface
 

Methods in eu.esdihumboldt.hale.common.core.report with type parameters of type Report
<M extends Message,R extends Report<M>>
void
ReportSession.addReport(R report)
          Add a Report to this session.
 

Methods in eu.esdihumboldt.hale.common.core.report that return types with arguments of type Report
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportSession.getAllReports()
          Get all reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportSession.getAllReports()
          Get all reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportSession.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportSession.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 

Methods in eu.esdihumboldt.hale.common.core.report with parameters of type Report
 void ReportHandler.publishReport(Report<?> report)
          Publish the given report.
 

Uses of Report in eu.esdihumboldt.hale.common.core.report.impl
 

Classes in eu.esdihumboldt.hale.common.core.report.impl with type parameters of type Report
 class AbstractReportDefinition<T extends Report<?>,R extends T>
          Abstract report definition.
 

Classes in eu.esdihumboldt.hale.common.core.report.impl that implement Report
 class DefaultReporter<T extends Message>
          Default report implementation
 

Methods in eu.esdihumboldt.hale.common.core.report.impl that return Report
protected  Report ReportImplDefintion.configureReport(Reporter<?> reporter, Properties props)
           
 

Uses of Report in eu.esdihumboldt.hale.common.core.report.writer
 

Methods in eu.esdihumboldt.hale.common.core.report.writer with parameters of type Report
static boolean ReportWriter.write(File file, boolean append, Report<?>... reports)
          Writes all Reports to a File.
 

Method parameters in eu.esdihumboldt.hale.common.core.report.writer with type arguments of type Report
static boolean ReportWriter.write(File file, Collection<Report<?>> reports, boolean append)
          Writes all Reports to a File.
 

Uses of Report in eu.esdihumboldt.hale.common.headless.report
 

Methods in eu.esdihumboldt.hale.common.headless.report with parameters of type Report
 void ReportFile.publishReport(Report<?> report)
           
 

Uses of Report in eu.esdihumboldt.hale.common.instancevalidator.report
 

Subinterfaces of Report in eu.esdihumboldt.hale.common.instancevalidator.report
 interface InstanceValidationReport
          Report with InstanceValidationMessages.
 interface InstanceValidationReporter
          Reporter with InstanceValidationMessages.
 

Uses of Report in eu.esdihumboldt.hale.common.instancevalidator.report.impl
 

Classes in eu.esdihumboldt.hale.common.instancevalidator.report.impl that implement Report
 class DefaultInstanceValidationReporter
          Reporter for instance validation messages.
 

Uses of Report in eu.esdihumboldt.hale.ui
 

Methods in eu.esdihumboldt.hale.ui with parameters of type Report
 void DefaultReportHandler.publishReport(Report<?> report)
           
 

Uses of Report in eu.esdihumboldt.hale.ui.service.report
 

Classes in eu.esdihumboldt.hale.ui.service.report with type parameters of type Report
 interface ReportListener<R extends Report<M>,M extends Message>
          Report listener interface.
 

Methods in eu.esdihumboldt.hale.ui.service.report with type parameters of type Report
<M extends Message,R extends Report<M>>
void
ReportService.addReport(R report)
          Adds a report
 

Methods in eu.esdihumboldt.hale.ui.service.report that return types with arguments of type Report
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportService.getCurrentReports()
          Get all current reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportService.getCurrentReports()
          Get all current reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportService.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportService.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 

Uses of Report in eu.esdihumboldt.hale.ui.service.report.internal
 

Methods in eu.esdihumboldt.hale.ui.service.report.internal with type parameters of type Report
<M extends Message,R extends Report<M>>
void
ReportServiceImpl.addReport(R report)
           
protected
<M extends Message,R extends Report<M>>
void
ReportServiceImpl.notifyReportAdded(Class<? extends R> reportType, Class<M> messageType, R report)
          Notify listeners that a report has been added
 

Methods in eu.esdihumboldt.hale.ui.service.report.internal that return types with arguments of type Report
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportServiceImpl.getCurrentReports()
          Get all reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportServiceImpl.getCurrentReports()
          Get all reports.
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportServiceImpl.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 com.google.common.collect.Multimap<Class<? extends Report<?>>,Report<?>> ReportServiceImpl.getReports(Class<? extends Message> messageType)
          Get all reports matching the given message type
 

Uses of Report in eu.esdihumboldt.hale.ui.views.report
 

Methods in eu.esdihumboldt.hale.ui.views.report with parameters of type Report
 void ReportList.reportAdded(Report<Message> report)
           
 void ReportList.selectReport(Report<? extends Message> report)
          Selects the given report if it exists, otherwise the selection is removed.
 

Uses of Report in eu.esdihumboldt.hale.ui.views.report.properties.details
 

Methods in eu.esdihumboldt.hale.ui.views.report.properties.details with parameters of type Report
protected  void ReportDetailsPage.setReport(Report<?> report)
          Set the currently selected report to the given report.
 

Uses of Report in eu.esdihumboldt.hale.ui.views.report.properties.details.extension
 

Methods in eu.esdihumboldt.hale.ui.views.report.properties.details.extension that return types with arguments of type Report
 Class<? extends Report<?>> CustomReportDetailsPageFactory.getReportType()
          Returns the Report class this detail page is registered for.
 

Method parameters in eu.esdihumboldt.hale.ui.views.report.properties.details.extension with type arguments of type Report
 CustomReportDetailsPage CustomReportDetailsPageExtension.getDetailPage(Class<? extends Report> reportType)
          Returns the registered detail page for the given report type.
It searches for registered pages for the specified type or any of its super types/interfaces.
 

Uses of Report in eu.esdihumboldt.hale.ui.views.report.properties.summary
 

Fields in eu.esdihumboldt.hale.ui.views.report.properties.summary declared as Report
 Report<?> AbstractReportSummary.report
          Contains the report to display.
 


Humboldt Alignment Editor 2.5.0

Build 2012-12-03_12-30-59
Revision 9d2dd4b0318cda9f1393b1ddd390f7f792d70a2d