blob: a14e747a8c561711ae23aacb360194d9aaa3ad1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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();
}
|