Packages

t

org.opalj.bi.reader

ClassFileReaderConfiguration

trait ClassFileReaderConfiguration extends AnyRef

Defines various settings related to reading/processing class files. To change the default configuration, override the respective val using early initializers!

Source
ClassFileReaderConfiguration.scala
Example:
  1. class ConfiguredFramework extends {
         override implicit val logContext: LogContext = theLogContext
         override implicit val config: Config = theConfig
    } with Java9FrameworkWithInvokedynamicSupportAndCaching(cache)
    new ConfiguredFramework
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClassFileReaderConfiguration
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def loadsInterfacesOnly: Boolean

    If true method bodies are never loaded.

Concrete Value Members

  1. implicit val config: Config

    The Config object that will be used to read the configuration settings for reading in class files.

  2. def defaultConfig: Config
  3. def defaultLogContext: LogContext
  4. implicit val logContext: LogContext

    The org.opalj.log.LogContext that should be used to log rewritings.

    The org.opalj.log.LogContext that should be used to log rewritings.

    Note

    The org.opalj.log.LogContext is typically either the org.opalj.log.GlobalLogContext or a project specific log context.