EventType

class EventType[T <: Event](val delegate: EventType[T]) extends SFXDelegate[EventType[T]]
Companion
object
trait SFXDelegate[EventType[T]]
class Object
trait Matchable
class Any

Value members

Constructors

def this(superType: EventType[_ >: T])(d: DummyImplicit)

Constructs a new EventType with the specified super type and the name set to null.

Constructs a new EventType with the specified super type and the name set to null.

def this(superType: EventType[_ >: T], name: String)

Constructs a new EventType with the specified super type and name.

Constructs a new EventType with the specified super type and name.

def this(name: String)

Constructs a new EventType with the specified name and the EventType.ROOT as its super type.

Constructs a new EventType with the specified name and the EventType.ROOT as its super type.

Value Params
name

The name

Concrete methods

def name: String

Gets the name of this event type.

Gets the name of this event type.

def superType: EventType[_ >: T]

Gets the super type of this event type.

Gets the super type of this event type.

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: EventType[T]