final case class DevContext(sourceMapper: SourceMapper, buildLink: BuildLink) extends Product with Serializable

If an application is loaded in dev mode then this additional context is available. It is available as a property in the Context object, from BuiltInComponents trait or injected via OptionalDevContext.

sourceMapper

Information about the source files that were used to compile the application.

buildLink

An interface that can be used to interact with the build system.

Source
ApplicationLoader.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DevContext
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DevContext(sourceMapper: SourceMapper, buildLink: BuildLink)

    sourceMapper

    Information about the source files that were used to compile the application.

    buildLink

    An interface that can be used to interact with the build system.

Value Members

  1. val buildLink: BuildLink
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val sourceMapper: SourceMapper