com.trolltech.extensions.signalhandler
Class QSignalHandler0

java.lang.Object
  extended by com.trolltech.extensions.signalhandler.QSignalHandler0

public abstract class QSignalHandler0
extends java.lang.Object

Signal handlers are a convenience class that provides compile time type checking of signal / slot connections.


Constructor Summary
QSignalHandler0(QSignalEmitter.Signal0 signal)
          Creates a new signal handler that sets up a connection from the input signal to this object.
 
Method Summary
abstract  void handle()
          Reimplement this function to handle responses to the signal this handler is connected to..
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QSignalHandler0

public QSignalHandler0(QSignalEmitter.Signal0 signal)
Creates a new signal handler that sets up a connection from the input signal to this object.

Parameters:
signal - The signal to connect to.
Method Detail

handle

public abstract void handle()
Reimplement this function to handle responses to the signal this handler is connected to..