Skip to content

Package: IsNotConnectedState

IsNotConnectedState

nameinstructionbranchcomplexitylinemethod
IsNotConnectedState()
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%
isConnected()
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 networkconfigurator.AdapterStates;
2:
3: /**
4: * State of a adapter that is NOT already connected with another Item.
5: *
6: * @author Erik Ole Arand - hfw416ar
7: *
8: */
9: public class IsNotConnectedState implements AdapterState {
10:
11:         @Override
12:         public boolean isConnected() {
13:                 return false;
14:         }
15:
16: }