Packages

c

slick.codegen

AbstractGenerator

abstract class AbstractGenerator[Code, TermName, TypeName] extends GeneratorHelpers[Code, TermName, TypeName]

Slick code generator providing the base structure and facilities. It contains a subclass as a generator for Tables, which again contains subclasses for Column, etc. The implementation follows the virtual class pattern, which allows flexible customization by overriding the inner classes (following the pattern).

Self Type
AbstractGenerator[Code, TermName, TypeName]
Source
AbstractGenerator.scala
See also

http://lampwww.epfl.ch/~odersky/papers/ScalableComponent.html

Linear Supertypes
GeneratorHelpers[Code, TermName, TypeName], AnyRef, Any
Type Hierarchy
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. AbstractGenerator
  2. GeneratorHelpers
  3. AnyRef
  4. 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

Basic customization overrides

  1. abstract case class AbstractTableDef(model: model.Table) extends Product with Serializable

    Code generator for table related code

    Code generator for table related code

    model

    corresponding Slick meta model component

  1. abstract def Table: (model.Table) => Table

    Table generator factory.

    Table generator factory. Override for customization.

  2. def entityName: (String) => String

    Maps database table name to entity case class name

  3. def tableName: (String) => String

    Maps database table name to Table class and value name

Ungrouped

  1. abstract type Table <: AbstractTableDef

    Table generator virtual class

  2. implicit class StringExtensions extends AnyRef

    Slick code generator string extension methods.

    Slick code generator string extension methods. (Warning: Not unicode-safe, uses String#apply)

    Definition Classes
    GeneratorHelpers
  1. abstract def docWithCode(comment: String, code: Code): Code

    Assemble doc comment with scala code

    Assemble doc comment with scala code

    Definition Classes
    GeneratorHelpers
  2. abstract def optionType(tpe: Code): Code

    Wrap the given type into an Option type

    Wrap the given type into an Option type

    Definition Classes
    GeneratorHelpers
  3. abstract def parseType(tpe: String): Code

    Generates code for a qualified Scala type

    Generates code for a qualified Scala type

    Definition Classes
    GeneratorHelpers
  4. val ddlEnabled: Boolean

    Enables DDL Generation.

  5. def indent(code: String): String
    Definition Classes
    GeneratorHelpers
  6. val scalaKeywords: Seq[String]

    Words that are reserved keywords in Scala

    Words that are reserved keywords in Scala

    Definition Classes
    GeneratorHelpers
  7. val slickTableTermMembersNoArgs: Seq[String]

    Existing term member names in Table[_] that do not take parameters

    Existing term member names in Table[_] that do not take parameters

    Definition Classes
    GeneratorHelpers
  8. final lazy val tables: Seq[Table]

    Table code generators.

  9. final lazy val tablesByName: Map[QualifiedName, Table]

    Table code generators indexed by db table name.