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

COVERAGE SUMMARY FOR SOURCE FILE [PoolMgrQueryPoolsMsg.java]

nameclass, %method, %block, %line, %
PoolMgrQueryPoolsMsg.java0%   (0/1)0%   (0/8)0%   (0/66)0%   (0/19)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PoolMgrQueryPoolsMsg0%   (0/1)0%   (0/8)0%   (0/66)0%   (0/19)
<static initializer> 0%   (0/1)0%   (0/8)0%   (0/1)
PoolMgrQueryPoolsMsg (PoolSelectionUnit$DirectionType, String, String, Storag... 0%   (0/1)0%   (0/39)0%   (0/12)
getAccessType (): PoolSelectionUnit$DirectionType 0%   (0/1)0%   (0/3)0%   (0/1)
getNetUnitName (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getPools (): List [] 0%   (0/1)0%   (0/3)0%   (0/1)
getProtocolUnitName (): String 0%   (0/1)0%   (0/3)0%   (0/1)
getStorageInfo (): StorageInfo 0%   (0/1)0%   (0/3)0%   (0/1)
setPoolList (List []): void 0%   (0/1)0%   (0/4)0%   (0/1)

1// $Id: PoolMgrQueryPoolsMsg.java,v 1.6 2007-07-23 10:49:09 behrmann Exp $
2 
3package diskCacheV111.vehicles ;
4 
5import diskCacheV111.poolManager.PoolSelectionUnit.DirectionType;
6import  java.util.*;
7 
8public class PoolMgrQueryPoolsMsg extends Message {
9   private final DirectionType _accessType  ;
10 
11   private String _netUnitName      = null ;
12   private String _protocolUnitName = null ;
13   private StorageInfo _storageInfo = null ;
14   private List<String> []_poolList         = null ;
15 
16   private static final long serialVersionUID = 4739697573589962019L;
17 
18    public PoolMgrQueryPoolsMsg(DirectionType accessType,
19            String protocolUnit,
20            String netUnitName,
21            StorageInfo storageInfo) {
22       _accessType       = accessType ;
23       _protocolUnitName = protocolUnit;
24       _netUnitName      = netUnitName ;
25       _storageInfo      = storageInfo ;
26 
27        setReplyRequired(true);
28        assert _storageInfo != null;
29   }
30   public DirectionType getAccessType(){ return _accessType ; }
31 
32   public String getNetUnitName(){ return _netUnitName ; }
33   public String getProtocolUnitName(){ return _protocolUnitName; }
34   public StorageInfo getStorageInfo(){ return _storageInfo ; }
35   public void setPoolList( List<String> [] poolList ){ _poolList = poolList ; }
36   public List<String> [] getPools(){ return _poolList ; }
37}

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