scalation.event

CausalLink

Related Doc: package event

case class CausalLink(_name: String, director: Model, condition: () ⇒ Boolean, causedEvent: Event) extends Identifiable with Product with Serializable

The CausalLink class provides casual links between events. A causal link indicates that a "causing event" (from node) conditionally may triggers a "caused event" (to node).

_name

the name of the causal link

director

the controller/scheduler that this causal link is a part of

condition

the condition under which the link is triggered

causedEvent

the event caused by this causal link

Linear Supertypes
Serializable, Serializable, Product, Equals, Identifiable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CausalLink
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Identifiable
  7. Error
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CausalLink(_name: String, director: Model, condition: () ⇒ Boolean, causedEvent: Event)

    _name

    the name of the causal link

    director

    the controller/scheduler that this causal link is a part of

    condition

    the condition under which the link is triggered

    causedEvent

    the event caused by this causal link

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 _name: String

    the name of the causal link

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. val causedEvent: Event

    the event caused by this causal link

  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val condition: () ⇒ Boolean

    the condition under which the link is triggered

  9. val director: Model

    the controller/scheduler that this causal link is a part of

  10. def display(from: Event, to: Event): Unit

    Tell the animation engine to display this CausalLink.

    Tell the animation engine to display this CausalLink.

    from

    the starting event prototype

    to

    the ending event prototype

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(that: Any): Boolean

    Determine whether Identifiable object 'this' equals Identifiable object 'that'.

    Determine whether Identifiable object 'this' equals Identifiable object 'that'. Works since 'id' is unique for all Identifiable objects.

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  15. final def getClass(): Class[_]

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

    Return the hashCode as the unique id.

    Return the hashCode as the unique id.

    Definition Classes
    Identifiable → AnyRef → Any
  17. def id: Int

    Get the id (unique identifier).

    Get the id (unique identifier).

    Definition Classes
    Identifiable
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def me: String

    Return the full identity.

    Return the full identity.

    Definition Classes
    Identifiable
  20. def name: String

    Get the name.

    Get the name.

    Definition Classes
    Identifiable
  21. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  24. def setName(label: String): Unit

    Set the name.

    Set the name.

    label

    the name to assign

    Definition Classes
    Identifiable
  25. def simType: String

    Get the type of the simulation object.

    Get the type of the simulation object.

    Definition Classes
    Identifiable
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Convert the causal link to a string.

    Convert the causal link to a string.

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Identifiable

Inherited from Error

Inherited from AnyRef

Inherited from Any

Ungrouped