class IssuesManager extends IssuesCollection with IssueLogger

IssuesCollection implementation, holds Issues for each metadata file and tracks when they change to allow clients to be more selective when pulling issues.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IssuesManager
  2. IssueLogger
  3. IssuesCollection
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new IssuesManager()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def add(issue: Issue): Unit
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clear(): Unit
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def getDiagnostics(path: PathLike): List[Diagnostic]
  13. def getMissing: Seq[PathLike]
  14. def hasUpdatedIssues(): Array[String]

    Array of metadata file paths whose issues have changed since they were last retrieved from this collection.

    Array of metadata file paths whose issues have changed since they were last retrieved from this collection.

    Definition Classes
    IssuesManagerIssuesCollection
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def ignoreUpdatedIssues(path: String): Unit

    Reset the issue update handling for a metadata file.

    Reset the issue update handling for a metadata file. This will cause the file not to be returned from the next call to hasUpdatedIssues() unless new issues are reported.

    Definition Classes
    IssuesManagerIssuesCollection
  17. def ignoreUpdatedIssuesInternal(path: PathLike): Unit
  18. def isEmpty: Boolean
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def issuesForFile(path: String): Array[api.Issue]

    Array of current Issues for the metadata file path.

    Array of current Issues for the metadata file path. Returns an empty array if there are none. Resets the updated issues tracking when called.

    Definition Classes
    IssuesManagerIssuesCollection
  21. def issuesForFileInternal(path: PathLike): Seq[Issue]
  22. def issuesForFileLocation(path: String, location: IssueLocation): Array[api.Issue]

    Array of current Issues for the metadata file path that are entirely enclosed within a code range defined by the Location.

    Array of current Issues for the metadata file path that are entirely enclosed within a code range defined by the Location. Returns an empty array if there are none. This does not reset the updates issues tracking.

    Definition Classes
    IssuesManagerIssuesCollection
  23. def issuesForFileLocationInternal(path: PathLike, location: IssueLocation): Array[api.Issue]
  24. def issuesForFiles(paths: Array[String], includeWarnings: Boolean, maxIssuesPerFile: Int): Array[api.Issue]

    Array of current Issues for multiple metadata files.

    Array of current Issues for multiple metadata files. If paths is null then this will return issues for all metadata files which have them. When includeWarnings is true, issues of any category will be returned otherwise only errors will be returned. The argument maxErrorsPerFile limits the number of Issues returned to the first 'n' on each file, if it is <1 all Issues will be returned for each metadata file. Resets the updated issues tracking when called for all files processed.

    Definition Classes
    IssuesManagerIssuesCollection
  25. def issuesForFilesInternal(paths: Array[PathLike], includeWarnings: Boolean, maxIssuesPerFile: Int): Seq[Issue]
  26. def log(issue: Issue): Unit
    Definition Classes
    IssuesManagerIssueLogger
  27. def logAll(issues: ArraySeq[Issue]): Unit
    Definition Classes
    IssueLogger
  28. def logAndGet[T](andIssues: IssuesAnd[T]): T
    Definition Classes
    IssueLogger
  29. def logError(path: PathLike, location: Location, message: String): Unit
    Definition Classes
    IssueLogger
  30. def logWarning(path: PathLike, location: Location, message: String): Unit
    Definition Classes
    IssueLogger
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def nonEmpty: Boolean
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. def pop(path: PathLike): List[Issue]
  36. def push(path: PathLike, issues: List[Issue]): Unit
  37. def replaceUnusedIssues(path: PathLike, issues: Seq[Issue]): Unit
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from IssueLogger

Inherited from IssuesCollection

Inherited from AnyRef

Inherited from Any

Ungrouped