sbt.inc

Relations

trait Relations extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Relations
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def ++(o: Relations): Relations

  2. abstract def --(sources: Iterable[File]): Relations

  3. abstract def addBinaryDep(src: File, dependsOn: File): Relations

  4. abstract def addExternalDep(src: File, dependsOn: String): Relations

  5. abstract def addInternalSrcDeps(src: File, dependsOn: Iterable[File]): Relations

  6. abstract def addProduct(src: File, prod: File, name: String): Relations

  7. abstract def allBinaryDeps: Set[File]

  8. abstract def allExternalDeps: Set[String]

  9. abstract def allInternalSrcDeps: Set[File]

  10. abstract def allProducts: Set[File]

  11. abstract def allSources: Set[File]

    All sources _with at least one product_ .

  12. abstract def binaryDep: Relation[File, File]

  13. abstract def binaryDeps(src: File): Set[File]

  14. abstract def classNames(src: File): Set[String]

  15. abstract def classes: Relation[File, String]

  16. abstract def definesClass(name: String): Set[File]

  17. abstract def externalDep: Relation[File, String]

  18. abstract def externalDeps(src: File): Set[String]

  19. abstract def internalSrcDep: Relation[File, File]

  20. abstract def internalSrcDeps(src: File): Set[File]

  21. abstract def produced(prod: File): Set[File]

  22. abstract def products(src: File): Set[File]

  23. abstract def srcProd: Relation[File, File]

  24. abstract def usesBinary(dep: File): Set[File]

  25. abstract def usesExternal(dep: String): Set[File]

  26. abstract def usesInternalSrc(dep: File): Set[File]