Closed foosmate closed 1 year ago
Since there are multiple classes providing a NavigationalStatus it would ease the message handling if there is an interface like this ...
NavigationalStatus
public interface HasStatus { NavigationalStatus getNavigationalStatus(); } public class AisPositionA implements AisPosition, HasCommunications, HasStatus { ... } public class AisPositionGPS implements AisPosition, HasStatus { ... }
Sounds fine, will do.
This is in release 0.6.15 on Maven Central now.
Since there are multiple classes providing a
NavigationalStatus
it would ease the message handling if there is an interface like this ...