EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010) |
---|
[all classes][dmg.cells.nucleus] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
KillEvent.java | 100% (1/1) | 50% (2/4) | 81% (29/36) | 71% (5/7) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class KillEvent | 100% (1/1) | 50% (2/4) | 81% (29/36) | 71% (5/7) |
getKiller (): CellPath | 0% (0/1) | 0% (0/4) | 0% (0/1) | |
getTimeout (): long | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
KillEvent (CellPath, long): void | 100% (1/1) | 100% (11/11) | 100% (4/4) | |
toString (): String | 100% (1/1) | 100% (18/18) | 100% (1/1) |
1 | package dmg.cells.nucleus ; |
2 | |
3 | /** |
4 | * |
5 | * |
6 | * @author Patrick Fuhrmann |
7 | * @version 0.1, 15 Feb 1998 |
8 | */ |
9 | public class KillEvent extends CellEvent { |
10 | long _timeout = 0 ; |
11 | public KillEvent( CellPath source , long timeout ){ |
12 | super( source , CellEvent.OTHER_EVENT ) ; |
13 | _timeout = timeout ; |
14 | return ; |
15 | } |
16 | public CellPath getKiller(){ return (CellPath)getSource() ; } |
17 | public long getTimeout(){ return _timeout ; } |
18 | public String toString(){ |
19 | return "KillEvent(source="+getSource().toString()+ |
20 | ";timeout="+_timeout+")" ; |
21 | } |
22 | } |
[all classes][dmg.cells.nucleus] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |