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() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def getDiagnostics(path: PathLike): List[Diagnostic]
  12. def getMissing: Seq[PathLike]
  13. 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
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. 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
  16. def ignoreUpdatedIssuesInternal(path: PathLike): Unit
  17. def isEmpty: Boolean
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. 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
  20. def issuesForFileInternal(path: PathLike): Seq[Issue]
  21. 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
  22. def issuesForFileLocationInternal(path: PathLike, location: IssueLocation): Array[api.Issue]
  23. 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
  24. def issuesForFilesInternal(paths: Array[PathLike], includeWarnings: Boolean, maxIssuesPerFile: Int): Seq[Issue]
  25. def log(issue: Issue): Unit
    Definition Classes
    IssuesManagerIssueLogger
  26. def logAll(issues: ArraySeq[Issue]): Unit
    Definition Classes
    IssueLogger
  27. def logAndGet[T](andIssues: IssuesAnd[T]): T
    Definition Classes
    IssueLogger
  28. def logError(path: PathLike, location: Location, message: String): Unit
    Definition Classes
    IssueLogger
  29. def logWarning(path: PathLike, location: Location, message: String): Unit
    Definition Classes
    IssueLogger
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def nonEmpty: Boolean
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def pop(path: PathLike): List[Issue]
  35. def push(path: PathLike, issues: List[Issue]): Unit
  36. def replaceUnusedIssues(path: PathLike, issues: Seq[Issue]): Unit
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from IssueLogger

Inherited from IssuesCollection

Inherited from AnyRef

Inherited from Any

Ungrouped