| EMMA Coverage Report (generated Tue Oct 27 11:32:50 PDT 2009) |
|---|
| [all classes][net.spy.memcached.protocol.ascii] |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| GetsOperationImpl.java | 100% (1/1) | 100% (1/1) | 100% (7/7) | 100% (2/2) |
| name | class, % | method, % | block, % | line, % |
|---|---|---|---|---|
| class GetsOperationImpl | 100% (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) |
| 1 | package net.spy.memcached.protocol.ascii; |
| 2 | |
| 3 | import java.util.Collections; |
| 4 | |
| 5 | import net.spy.memcached.ops.GetsOperation; |
| 6 | |
| 7 | /** |
| 8 | * Implementation of the gets operation. |
| 9 | */ |
| 10 | class 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 |