Skip to content

Package: AdapterState

AdapterState

Coverage

1: package networkconfigurator.AdapterStates;
2:
3: /**
4: * Interface for State-Pattern.
5: *
6: * @author Erik Ole Arand
7: *
8: */
9: public interface AdapterState {
10:
11:         /**
12:          * Returns true if the adapter is already connected.
13:          *
14:          * @return the truth.
15:          */
16:         boolean isConnected();
17:
18: }