EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010)
[all classes][diskCacheV111.vehicles]

COVERAGE SUMMARY FOR SOURCE FILE [PnfsModifyCacheLocationMessage.java]

nameclass, %method, %block, %line, %
PnfsModifyCacheLocationMessage.java0%   (0/1)0%   (0/3)0%   (0/26)0%   (0/6)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PnfsModifyCacheLocationMessage0%   (0/1)0%   (0/3)0%   (0/26)0%   (0/6)
PnfsModifyCacheLocationMessage (PnfsId, String): void 0%   (0/1)0%   (0/10)0%   (0/4)
getPoolName (): String 0%   (0/1)0%   (0/3)0%   (0/1)
toString (): String 0%   (0/1)0%   (0/13)0%   (0/1)

1//$Id: PnfsModifyCacheLocationMessage.java,v 1.3 2005-02-21 14:20:50 patrick Exp $
2 
3package diskCacheV111.vehicles;
4import  diskCacheV111.util.* ;
5 
6public class PnfsModifyCacheLocationMessage extends PnfsMessage {
7   
8    private String _poolName = null;
9 
10    private static final long serialVersionUID = -7996549495498661141L;
11    
12    public PnfsModifyCacheLocationMessage(PnfsId pnfsId, String poolName){
13        super(pnfsId);
14        _poolName = poolName;
15    }
16    
17    public String getPoolName(){
18        return _poolName;
19    }
20    public String toString(){
21        return super.toString()+";Pool="+_poolName;
22    }
23}
24 

[all classes][diskCacheV111.vehicles]
EMMA 2.0.5312 (C) Vladimir Roubtsov