EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010) |
---|
[all classes][dmg.cells.nucleus] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
ExceptionEvent.java | 0% (0/1) | 0% (0/4) | 0% (0/33) | 0% (0/6) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class ExceptionEvent | 0% (0/1) | 0% (0/4) | 0% (0/33) | 0% (0/6) |
ExceptionEvent (CellPath, Exception): void | 0% (0/1) | 0% (0/8) | 0% (0/3) | |
getException (): Exception | 0% (0/1) | 0% (0/3) | 0% (0/1) | |
getSender (): CellPath | 0% (0/1) | 0% (0/4) | 0% (0/1) | |
toString (): String | 0% (0/1) | 0% (0/18) | 0% (0/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 ExceptionEvent extends CellEvent { |
10 | Exception _exception ; |
11 | public ExceptionEvent( CellPath source , Exception exception ){ |
12 | super( source , CellEvent.OTHER_EVENT ) ; |
13 | _exception = exception ; |
14 | return ; |
15 | } |
16 | public CellPath getSender(){ return (CellPath)getSource() ; } |
17 | public Exception getException(){ return _exception ; } |
18 | public String toString(){ |
19 | return "ExceptionEvent(source="+getSource().toString()+ |
20 | ";Exception="+_exception+")" ; |
21 | } |
22 | } |
23 |
[all classes][dmg.cells.nucleus] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |