EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010) |
---|
[all classes][diskCacheV111.vehicles] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
PnfsSetLengthMessage.java | 0% (0/1) | 0% (0/2) | 0% (0/13) | 0% (0/5) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class PnfsSetLengthMessage | 0% (0/1) | 0% (0/2) | 0% (0/13) | 0% (0/5) |
PnfsSetLengthMessage (PnfsId, long): void | 0% (0/1) | 0% (0/10) | 0% (0/4) | |
getLength (): long | 0% (0/1) | 0% (0/3) | 0% (0/1) |
1 | // $Id: PnfsSetLengthMessage.java,v 1.5 2007-05-24 13:51:05 tigran Exp $ |
2 | |
3 | package diskCacheV111.vehicles; |
4 | import diskCacheV111.util.PnfsId; |
5 | |
6 | public class PnfsSetLengthMessage extends PnfsMessage { |
7 | |
8 | private final long _length; |
9 | |
10 | private static final long serialVersionUID = -7881380742681787681L; |
11 | |
12 | public PnfsSetLengthMessage(PnfsId pnfsId, long length){ |
13 | super(pnfsId); |
14 | _length = length; |
15 | setReplyRequired(true); |
16 | } |
17 | |
18 | public long getLength(){ |
19 | return _length; |
20 | } |
21 | } |
[all classes][diskCacheV111.vehicles] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |