Skip to content

Method: IsNotConnectedState()

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