trait ClassPath extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClassPath
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def asClassPathStrings: Seq[String]
  2. abstract def asSourcePathString: String

    The whole sourcepath in the form of one String.

  3. abstract def asURLs: Seq[URL]
  4. abstract def findClassFile(className: String): Option[AbstractFile]

Concrete Value Members

  1. def asClassPathString: String

    The whole classpath in the form of one String.

  2. def findClass(className: String): Option[ClassRepresentation]

    It returns both classes from class file and source files (as our base ClassRepresentation).

    It returns both classes from class file and source files (as our base ClassRepresentation). So note that it's not so strictly related to findClassFile.

Deprecated Value Members

  1. def asClasspathString: String
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.5) use asClassPathString instead of this one