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() @HotSpotIntrinsicCandidate()
  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 flatMap(f: (Fragment) => AsyncStream[Fragment]): SpecStructure
  12. lazy val fragments: Fragments
  13. def fragmentsList(ee: ExecutionEnv): List[Fragment]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. val header: SpecHeader
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. val lazyFragments: () => Fragments
  18. def linkReferences: Action[List[SpecificationRef]]
  19. def map(f: (Fragments) => Fragments): SpecStructure
  20. def name: String
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. def references: Action[List[Fragment]]
  26. def seeReferences: Action[List[SpecificationRef]]
  27. def setArguments(args: Arguments): SpecStructure
  28. def setFragments(fs: => Fragments): SpecStructure
  29. def setHeader(h: SpecHeader): SpecStructure
  30. def specClassName: String
  31. def specificationRefs: Action[List[SpecificationRef]]
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. def tags: Action[List[NamedTag]]
  34. def texts: Action[List[Fragment]]
  35. def update(f: AsyncTransducer[Fragment, Fragment]): SpecStructure
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. def wordsTitle: String
  40. def |>(p: AsyncTransducer[Fragment, Fragment]): SpecStructure

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped