package model

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. abstract class BaseWidgetReader extends WidgetReader
  2. case class BooleanLine(default: Option[Boolean] = None) extends WidgetLine[Boolean] with Product with Serializable
  3. case class CharLine(default: Option[Char] = None) extends WidgetLine[Char] with Product with Serializable
  4. case class DoubleLine(default: Option[Double] = None) extends WidgetLine[Double] with Product with Serializable
  5. case class EscapedStringLine(default: Option[String] = None) extends WidgetLine[String] with Product with Serializable
  6. case class IntLine(default: Option[Int] = None) extends WidgetLine[Int] with Product with Serializable
  7. case class InvertedBooleanLine(default: Option[Boolean] = None) extends WidgetLine[Boolean] with Product with Serializable
  8. case class MapLine[T](map: List[(String, T)]) extends WidgetLine[T] with Product with Serializable
  9. case class OptionLine[T](noneLine: String, someLineReader: WidgetLine[T]) extends WidgetLine[Option[T]] with Product with Serializable
  10. case class OptionalEscapedStringLine(default: Option[String] = None) extends WidgetLine[String] with Product with Serializable
  11. case class ReservedLine(output: String = "RESERVED") extends WidgetLine[Unit] with Product with Serializable
  12. case class SpecifiedLine(str: String) extends WidgetLine[Unit] with Product with Serializable
  13. case class StringBooleanLine(default: Option[Boolean] = None) extends WidgetLine[Boolean] with Product with Serializable
  14. case class StringLine(default: Option[String] = None) extends WidgetLine[String] with Product with Serializable
  15. case class TNilBooleanLine(default: Option[Boolean] = None) extends WidgetLine[Boolean] with Product with Serializable
  16. trait WidgetLine[T] extends AnyRef
  17. trait WidgetReader extends AnyRef

Ungrouped