case class SpecStructure(header: SpecHeader, arguments: Arguments, lazyFragments: () => Fragments) extends Product with Serializable

Structure of a Specification:

  • a header
  • some arguments
  • specification fragments

Note that the fragments have to be lazy in order to avoid cycles when 2 specifications are referencing each other with links

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SpecStructure
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SpecStructure(header: SpecHeader, arguments: Arguments, lazyFragments: () => Fragments)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val arguments: Arguments
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def contents: AsyncStream[Fragment]
  8. def dependsOn(spec2: SpecStructure)(ee: ExecutionEnv): Boolean
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def examples: Action[List[Fragment]]
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def flatMap(f: (Fragment) => AsyncStream[Fragment]): SpecStructure
  13. lazy val fragments: Fragments
  14. def fragmentsList(ee: ExecutionEnv): List[Fragment]
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. val header: SpecHeader
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. val lazyFragments: () => Fragments
  19. def linkReferences: Action[List[SpecificationRef]]
  20. def map(f: (Fragments) => Fragments): SpecStructure
  21. def name: String
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. def references: Action[List[Fragment]]
  27. def seeReferences: Action[List[SpecificationRef]]
  28. def setArguments(args: Arguments): SpecStructure
  29. def setFragments(fs: => Fragments): SpecStructure
  30. def setHeader(h: SpecHeader): SpecStructure
  31. def specClassName: String
  32. def specificationRefs: Action[List[SpecificationRef]]
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def tags: Action[List[NamedTag]]
  35. def texts: Action[List[Fragment]]
  36. def update(f: AsyncTransducer[Fragment, Fragment]): SpecStructure
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  40. def wordsTitle: String
  41. def |>(p: AsyncTransducer[Fragment, Fragment]): SpecStructure

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped