Skip to content

Package: NoAttributeAllowedInInterface

NoAttributeAllowedInInterface

nameinstructionbranchcomplexitylinemethod
NoAttributeAllowedInInterface()
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
create()
M: 4 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: package de.fhdw.wtf.generator.transformer.exception;
2:
3: import de.fhdw.wtf.common.exception.walker.TaskException;
4:
5: public final class NoAttributeAllowedInInterface extends TaskException {
6:         
7:         private static final long serialVersionUID = 1L;
8:         private static final String NO_ATTRIBUTE_IN_INTERFACE =
9:                         "Programming exception: no attribute in Java-Interface allowed!";
10:         
11:         private NoAttributeAllowedInInterface() {
12:                 super(NO_ATTRIBUTE_IN_INTERFACE);
13:         }
14:         
15:         public static NoAttributeAllowedInInterface create() {
16:                 return new NoAttributeAllowedInInterface();
17:         }
18:         
19: }