Skip to content

Package: LibRefState

LibRefState

nameinstructionbranchcomplexitylinemethod
LibRefState()
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%
getStfuPMD()
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%
setStfuPMD(String)
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%

Coverage

1: package libraries;
2:
3: /**
4: * class for states of the library states.
5: *
6: * @author Markus
7: *
8: */
9: public class LibRefState {
10:
11:         /**
12:          * schwachsinn für PMD.
13:          */
14:         private String stfuPMD;
15:
16:         /**
17:          * schwachsinn für PMD.
18:          *
19:          * @return String
20:          */
21:         public String getStfuPMD() {
22:                 return this.stfuPMD;
23:         }
24:
25:         /**
26:          * iwas.
27:          *
28:          * @param stfuPMD
29:          * egal.
30:          */
31:         public void setStfuPMD(final String stfuPMD) {
32:                 this.stfuPMD = stfuPMD;
33:         }
34: }