Packages

case class PluginDescription(name: String, classname: String) extends Product with Serializable

A description of a compiler plugin, suitable for serialization to XML for inclusion in the plugin's .jar file.

name

A short name of the plugin, used to identify it in various contexts. The phase defined by the plugin should have the same name.

classname

The name of the main Plugin class.

Source
PluginDescription.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PluginDescription
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new PluginDescription(name: String, classname: String)

    name

    A short name of the plugin, used to identify it in various contexts. The phase defined by the plugin should have the same name.

    classname

    The name of the main Plugin class.

Value Members

  1. val classname: String
  2. val name: String
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def toXML: String

    An XML representation of this description.

    An XML representation of this description. It should be stored inside the jar archive file.