mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
added Javadoc for SeriesWithRows
This commit is contained in:
+11
-7
@@ -1,7 +1,11 @@
|
||||
package com.sap.sailing.domain.base.racegroup;
|
||||
|
||||
import com.sap.sailing.domain.base.SeriesData;
|
||||
|
||||
public interface SeriesWithRows extends SeriesData {
|
||||
public Iterable<RaceRow> getRaceRows();
|
||||
}
|
||||
package com.sap.sailing.domain.base.racegroup;
|
||||
|
||||
import com.sap.sailing.domain.base.SeriesData;
|
||||
|
||||
/**
|
||||
* The interface represents a series and holds its races. The interface abstracts from the server internal differences
|
||||
* between Leaderboards and Regattas for any app since Leaderboards do not have any series, but Regattas.
|
||||
*/
|
||||
public interface SeriesWithRows extends SeriesData {
|
||||
public Iterable<RaceRow> getRaceRows();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user