Packages

final class TargetData extends AnyRef

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

Instance Constructors

  1. new TargetData()

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. val actualSources: Map[io.AbsolutePath, MappedSource]
  5. def addDependencyModules(dependencyModules: DependencyModulesResult): Unit
  6. def addDependencySource(sourcesJar: io.AbsolutePath, target: BuildTargetIdentifier): Unit
  7. def addJavacOptions(result: JavacOptionsResult, bspSession: Option[BuildServerConnection]): Unit
  8. def addMappedSource(path: io.AbsolutePath, mapped: MappedSource): Unit
  9. def addScalacOptions(result: ScalacOptionsResult, bspConnectionName: Option[BuildServerConnection]): Unit
  10. def addSourceItem(sourceItem: SourceItem, buildTarget: BuildTargetIdentifier): Unit
  11. def addSourceItem(sourceItem: io.AbsolutePath, buildTarget: BuildTargetIdentifier): Unit
  12. def addWorkspaceBuildTargets(result: WorkspaceBuildTargetsResult): Unit
  13. def all: Iterator[BuildTarget]
  14. def allBuildTargetIds: Seq[BuildTargetIdentifier]
  15. def allJava: Iterator[JavaTarget]
  16. def allScala: Iterator[ScalaTarget]
  17. def allTargetRoots: Iterator[io.AbsolutePath]
  18. def allWorkspaceJars: Iterator[io.AbsolutePath]
  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. val buildTargetClasspath: Map[BuildTargetIdentifier, List[String]]
  21. val buildTargetDependencyModules: Map[BuildTargetIdentifier, List[MavenDependencyModule]]
  22. val buildTargetGeneratedDirs: Map[io.AbsolutePath, Unit]
  23. val buildTargetGeneratedFiles: Map[io.AbsolutePath, Unit]
  24. val buildTargetInfo: Map[BuildTargetIdentifier, BuildTarget]
  25. val buildTargetSources: Map[BuildTargetIdentifier, Set[io.AbsolutePath]]
  26. def checkIfGeneratedDir(path: io.AbsolutePath): Boolean
  27. def checkIfGeneratedSource(source: Path): Boolean
  28. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  29. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  31. def findSourceJarOf(jar: io.AbsolutePath, targetId: Option[BuildTargetIdentifier]): Option[io.AbsolutePath]
  32. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  33. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  34. def info(id: BuildTargetIdentifier): Option[BuildTarget]
  35. val inverseDependencies: Map[BuildTargetIdentifier, ListBuffer[BuildTargetIdentifier]]
  36. val inverseDependencySources: Map[io.AbsolutePath, Set[BuildTargetIdentifier]]
  37. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  38. def isSourceFile(source: io.AbsolutePath): Boolean
  39. val isSourceRoot: Set[io.AbsolutePath]
  40. def javaTarget(id: BuildTargetIdentifier): Option[JavaTarget]
  41. val javaTargetInfo: Map[BuildTargetIdentifier, JavaTarget]
  42. def javaTargetRoot(buildTarget: BuildTargetIdentifier): Option[io.AbsolutePath]
  43. def jvmTarget(id: BuildTargetIdentifier): Option[JvmTarget]
  44. def jvmTargets(id: BuildTargetIdentifier): List[JvmTarget]
  45. def linkSourceFile(id: BuildTargetIdentifier, source: io.AbsolutePath): Unit
  46. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  48. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  49. def onCreate(source: io.AbsolutePath): Unit
  50. val originalSourceItems: Set[io.AbsolutePath]
  51. def reset(): Unit
  52. def resetConnections(idToConn: List[(BuildTargetIdentifier, BuildServerConnection)]): Unit
  53. def scalaTarget(id: BuildTargetIdentifier): Option[ScalaTarget]
  54. val scalaTargetInfo: Map[BuildTargetIdentifier, ScalaTarget]
  55. def scalaTargetRoot(buildTarget: BuildTargetIdentifier): Option[io.AbsolutePath]
  56. def sourceBuildTargets(sourceItem: io.AbsolutePath): Option[Iterable[BuildTargetIdentifier]]
  57. val sourceItemFiles: Set[io.AbsolutePath]
  58. val sourceItemsToBuildTarget: Map[io.AbsolutePath, ConcurrentLinkedQueue[BuildTargetIdentifier]]
  59. val sourceJarNameToJarFile: Map[String, io.AbsolutePath]
  60. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  61. def targetClassDirectories(id: BuildTargetIdentifier): List[String]
  62. def targetClasspath(id: BuildTargetIdentifier, cancelPromise: Promise[Unit])(implicit ec: ExecutionContext): Option[Future[List[String]]]
  63. def targetJarClasspath(id: BuildTargetIdentifier): Option[List[io.AbsolutePath]]

    Get jars for a specific build target.

    Get jars for a specific build target.

    We first try to use buildTargetDependencyModules request since it should be low cost for build tools like Bazel.

    We fall back to reading from classpath only if the classpath is read eagerly.

    id

    id of the queried target

    returns

    depenendency jar list if available

  64. def targetRoots(buildTarget: BuildTargetIdentifier): List[io.AbsolutePath]
  65. val targetToConnection: Map[BuildTargetIdentifier, BuildServerConnection]
  66. def toString(): String
    Definition Classes
    AnyRef → Any
  67. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  68. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  69. 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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped