working on event extraction from rosenkeller
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -2,18 +2,9 @@
|
||||
package de.srsoftware.cal.api;
|
||||
|
||||
/**
|
||||
* cartesian coordinates
|
||||
* cartesian coords
|
||||
* @param longitude the longitude
|
||||
* @param latitude the latitude
|
||||
*/
|
||||
public interface Coords {
|
||||
/**
|
||||
* the longitude
|
||||
* @return the longitude
|
||||
*/
|
||||
double longitude();
|
||||
|
||||
/**
|
||||
* the latitude
|
||||
* @return the latitude
|
||||
*/
|
||||
double latitude();
|
||||
public record Coords(double longitude, double latitude) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user