scala.tools.nsc.reporters

Reporter

abstract class Reporter extends AnyRef

This interface provides methods to issue information, warning and error messages.

Source
Reporter.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Reporter
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Reporter()

Type Members

  1. class Severity extends Value

Abstract Value Members

  1. abstract def info0(pos: Position, msg: String, severity: Severity, force: Boolean): Unit

    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val ERROR: Severity

  7. val INFO: Severity

  8. val WARNING: Severity

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. var cancelled: Boolean

  11. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def comment(pos: Position, msg: String): Unit

  13. def echo(pos: Position, msg: String): Unit

  14. def echo(msg: String): Unit

    For sending a message which should not be labeled as a warning/error, but also shouldn't require -verbose to be visible.

  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def error(pos: Position, msg: String): Unit

  18. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  19. def flush(): Unit

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hasErrors: Boolean

  22. def hasWarnings: Boolean

  23. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  24. def incompleteHandled: Boolean

  25. def incompleteInputError(pos: Position, msg: String): Unit

  26. def info(pos: Position, msg: String, force: Boolean): Unit

    Informational messages, suppressed unless -verbose or force=true.

  27. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def reset(): Unit

  32. object severity extends Enumeration

  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def toString(): String

    Definition Classes
    AnyRef → Any
  35. def truncationOK: Boolean

  36. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  37. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  38. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  39. def warning(pos: Position, msg: String): Unit

    Warnings and errors.

  40. def withIncompleteHandler[T](handler: (Position, String) ⇒ Unit)(thunk: ⇒ T): T

  41. def withoutTruncating[T](body: ⇒ T): T

Deprecated Value Members

  1. def countAsString(n: Int): String

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Moved to scala.tools.util.StringOps

  2. def countElementsAsString(n: Int, elements: String): String

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Moved to scala.tools.util.StringOps

Inherited from AnyRef

Inherited from Any