@author Olaf Braun - Software Development @version 1.0
| 20 | * @version 1.0 |
| 21 | */ |
| 22 | public interface MapPoint { |
| 23 | /** |
| 24 | * Gets latitude. |
| 25 | * |
| 26 | * @return the latitude |
| 27 | */ |
| 28 | double getLatitude(); |
| 29 | |
| 30 | /** |
| 31 | * Gets longitude. |
| 32 | * |
| 33 | * @return the longitude |
| 34 | */ |
| 35 | double getLongitude(); |
| 36 | } |
no outgoing calls
no test coverage detected