EMMA Coverage Report (generated Wed Jun 08 12:10:57 KST 2005)
[all classes][org.apache.mina.protocol]

COVERAGE SUMMARY FOR SOURCE FILE [SimpleProtocolDecoderOutput.java]

nameclass, %method, %block, %line, %
SimpleProtocolDecoderOutput.java0%   (0/1)0%   (0/3)0%   (0/16)0%   (0/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SimpleProtocolDecoderOutput0%   (0/1)0%   (0/3)0%   (0/16)0%   (0/6)
SimpleProtocolDecoderOutput (): void 0%   (0/1)0%   (0/8)0%   (0/3)
getMessageQueue (): Queue 0%   (0/1)0%   (0/3)0%   (0/1)
write (Object): void 0%   (0/1)0%   (0/5)0%   (0/2)

1/**
2 * 
3 */
4package org.apache.mina.protocol;
5 
6import org.apache.mina.protocol.ProtocolDecoderOutput;
7import org.apache.mina.util.Queue;
8 
9/**
10 * A {@link ProtocolDecoderOutput} based on queue.
11 * 
12 * @author The Apache Directory Project (dev@directory.apache.org)
13 * @author Trustin Lee (trustin@apache.org)
14 * @version $Rev: 165120 $, $Date: 2005-04-28 18:03:57 +0900 $
15 *
16 */
17public class SimpleProtocolDecoderOutput implements ProtocolDecoderOutput
18{
19    private final Queue messageQueue = new Queue();
20    
21    public SimpleProtocolDecoderOutput()
22    {
23    }
24    
25    public Queue getMessageQueue()
26    {
27        return messageQueue;
28    }
29    
30    public void write( Object message )
31    {
32        messageQueue.push( message );
33    }
34}

[all classes][org.apache.mina.protocol]
EMMA 2.0.4217 (C) Vladimir Roubtsov