EMMA Coverage Report (generated Tue Oct 27 11:32:50 PDT 2009)
[all classes][net.spy.memcached.protocol.ascii]

COVERAGE SUMMARY FOR SOURCE FILE [GetsOperationImpl.java]

nameclass, %method, %block, %line, %
GetsOperationImpl.java100% (1/1)100% (1/1)100% (7/7)100% (2/2)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class GetsOperationImpl100% (1/1)100% (1/1)100% (7/7)100% (2/2)
GetsOperationImpl (String, GetsOperation$Callback): void 100% (1/1)100% (7/7)100% (2/2)

1package net.spy.memcached.protocol.ascii;
2 
3import java.util.Collections;
4 
5import net.spy.memcached.ops.GetsOperation;
6 
7/**
8 * Implementation of the gets operation.
9 */
10class GetsOperationImpl extends BaseGetOpImpl implements GetsOperation {
11 
12        private static final String CMD="gets";
13 
14        public GetsOperationImpl(String key, GetsOperation.Callback cb) {
15                super(CMD, cb, Collections.singleton(key));
16        }
17 
18}

[all classes][net.spy.memcached.protocol.ascii]
EMMA 2.0.5312 (C) Vladimir Roubtsov