Package: ExtendingPhase
ExtendingPhase
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ExtendingPhase() | 
  | 
  | 
  | 
  | 
  | 
||||||||||||||||||||
Coverage
1: /**
2:  * 
3:  */
4: package controller;
5: 
6: import model.type.TypeDoesNotExistException;
7: import model.type.TypeExceptions;
8: 
9: /**
10:  * @author Hendrik
11:  * 
12:  */
13: public abstract class ExtendingPhase extends AbstractPhase {
14: 
15:         @Override
16:         public abstract void action() throws TypeDoesNotExistException, TypeExceptions;
17: 
18: }