c

bloop.reporter

ReporterFormat

abstract class ReporterFormat extends AnyRef

Describes how messages should be formatted by a ConfigurableReporter.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReporterFormat
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReporterFormat(reporter: ConfigurableReporter)

    reporter

    The reporter that will use this format.

Abstract Value Members

  1. abstract def formatProblem(problem: Problem): String

    Returns a string representation of Problem, as it should be shown by the reporter.

    Returns a string representation of Problem, as it should be shown by the reporter.

    problem

    The problem to format.

    returns

    A string representation of the problem.

  2. abstract def printSummary(): Unit

    Prints a summary of all the errors reporter to the logger.