|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SocketServerListener.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* Created on 2004/06/03
|
|
3 |
*/
|
|
4 |
package org.asyrinx.brownie.net.socket;
|
|
5 |
|
|
6 |
import java.util.EventListener;
|
|
7 |
|
|
8 |
/**
|
|
9 |
* @author akima
|
|
10 |
*/
|
|
11 |
public interface SocketServerListener extends EventListener { |
|
12 |
/**
|
|
13 |
* @param line
|
|
14 |
*/
|
|
15 |
public void receipt(String line); |
|
16 |
} |
|