This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/util/Connection.java
Matthias Schiffer 8ee379b1ab Fix formatting and documentation in util package
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@169 72836036-5685-4462-b002-a69064685172
2011-05-06 11:20:21 +02:00

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();
}