Skip to content

Package: ExtendingPhase

ExtendingPhase

nameinstructionbranchcomplexitylinemethod
ExtendingPhase()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

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: }