Packages

p

app.wordpace

inkwell

package inkwell

Type Members

  1. case class DatabaseConfiguration(url: String, username: String, password: String) extends Product with Serializable
  2. abstract class DefaultGenerator[Output] extends Generator[Output]
  3. case class DefaultGeneratorConfiguration(db: DatabaseConfiguration, sourceSchema: String, targetFolder: Path, basePackage: String) extends GeneratorConfiguration with Product with Serializable
  4. class FileGenerator extends DefaultGenerator[Unit]

    Writes each CompilationUnit to a file.

  5. case class GenerationException(message: String, cause: Throwable) extends RuntimeException with Product with Serializable
  6. trait Generator[Output] extends AnyRef
  7. trait GeneratorConfiguration extends AnyRef

    Basic and advanced configuration options that can be modified without extending the generator class.

    Basic and advanced configuration options that can be modified without extending the generator class.

    In most cases, extend DefaultGeneratorConfiguration instead of this trait directly.

  8. class StringGenerator extends DefaultGenerator[Seq[CompilationUnit]]

    Simply returns each CompilationUnit.

Ungrouped