entitytled

EntityComponent

Related Doc: package entitytled

trait EntityComponent extends AnyRef

Component grouping together some entity relation declarations.

Needs to be mixed in along with a DriverComponent, RelationshipComponent, and a RelationshipRepComponent.

Self Type
EntityComponent with DriverComponent with RelationshipComponent with RelationshipRepComponent
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. EntityComponent
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract class Entity[E <: (EntityComponent.this)#Entity[E, I], I] extends AnyRef

    Base class for entities.

    Base class for entities.

    Extend this class with a case class to define an entity. Entities need to be uniquely identifiable by an ID. Clients need to implement the id member

    E

    The extending entity type itself (a self bound).

    I

    The ID type.

  2. abstract class EntityTable[E <: (EntityComponent.this)#Entity[E, I], I] extends slick.driver.JdbcProfile.API.Table[E]

    Base class for entity tables.

    Base class for entity tables.

    Extend this class to define a table for an entity type. Entity tables must define an ID column. Clients need to implement the id member.

    E

    The entity type this table represents.

    I

    The entity's ID type.

  3. type Include[E <: (EntityComponent.this)#Entity[E, _]] = ((EntityComponent.this)#Relationship[_ <: (EntityComponent.this)#EntityTable[E, _], _ <: slick.driver.JdbcProfile.API.Table[_], E, _, T, C], C[T]) forSome {type C[_] <: Any, type T}

    Type alias for a relationship-value pair.

  4. class Includes[E <: (EntityComponent.this)#Entity[E, _]] extends AnyRef

    Set of relationship-value pairs that can be included onto an entity instance.

    Set of relationship-value pairs that can be included onto an entity instance.

    Should be instantiated through its companion object.

    E

    The ower entity's type.

  5. trait IncludesSetter[E <: (EntityComponent.this)#Entity[E, _]] extends AnyRef

    Can set a new set of included relationship values on an entity instance.

    Can set a new set of included relationship values on an entity instance.

    Intended to be instantiated through implicit materialization by it's companion object.

    E

    The type of the entity that owns the includes.

    Annotations
    @implicitNotFound( ... )

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. object Includes

  5. object IncludesSetter

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. def toString(): String

    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped