scala.swing.Reactions

class Impl

[source: scala/swing/Reactions.scala]

class Impl
extends Reactions
Method Summary
def += (r : PartialFunction) : Unit
Add a reaction.
def -= (r : PartialFunction) : Unit
Remove the given reaction.
def apply (e : Event) : Unit
def isDefinedAt (e : Event) : Boolean
Checks if a value is contained in the functions domain.
Methods inherited from PartialFunction
orElse, andThen
Methods inherited from Function1
toString, compose
Methods inherited from AnyRef
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def isDefinedAt(e : Event) : Boolean
Checks if a value is contained in the functions domain.
Parameters
x - the value to test
Returns
true, iff x is in the domain of this function.

def +=(r : PartialFunction) : Unit
Add a reaction.
Overrides
Reactions.+=

def -=(r : PartialFunction) : Unit
Remove the given reaction.
Overrides
Reactions.-=

def apply(e : Event) : Unit