remove dependency on Swing
[org.ibex.net.git] / src / org / ibex / net / Listener.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.net;
6 import java.net.*;
7 import org.ibex.io.*;
8
9 public interface Listener {
10     
11     /** returns false if the connection was not handled */
12     public boolean accept(Connection c);
13
14 }