summaryrefslogtreecommitdiff
path: root/src/library/scala/reflect/api/ClassLoaders.scala
blob: 7be402d3df97bfd363a55dc1d584f2d510f39197 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package scala.reflect
package api

trait ClassLoaders { self: Universe =>

  /** The symbol corresponding to the globally accessible class with the
   *  given fully qualified name `fullName`.
   */
  def staticClass(fullName: String): Symbol

  /** The symbol corresponding to the globally accessible object with the
   *  given fully qualified name `fullName`.
   */
  def staticModule(fullName: String): Symbol

}