git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@169 72836036-5685-4462-b002-a69064685172
11 lines
192 B
Java
11 lines
192 B
Java
package jrummikub.util;
|
|
|
|
/**
|
|
* A Connection object can be used to remove a listener from a event
|
|
*/
|
|
public interface Connection {
|
|
/**
|
|
* Removes the listener
|
|
*/
|
|
public void remove();
|
|
}
|