Skip to content

Package: ConfigurationContext

ConfigurationContext

nameinstructionbranchcomplexitylinemethod
ConfigurationContext()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
equals(Object)
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
hashCode()
M: 0 C: 2
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: package model.definition;
2:
3: /**
4: * Repraesentiert die Reichweite/Kontext der Konfigurationsvariablen.
5: *
6: * @author Phil
7: *
8: */
9: public class ConfigurationContext implements VariableContext {
10:         @Override
11:         public boolean equals(final Object obj) {
12:                 return obj instanceof ConfigurationContext;
13:         }
14:
15:         @Override
16:         public int hashCode() {
17:                 return basic.ModelConstants.CONFIGCONTEXTHASH;
18:         }
19: }