Package de.cketti.changelog
Interface ChangeLogProvider
-
- All Known Implementing Classes:
MergedChangeLogProvider
public interface ChangeLogProviderA Change Log provider that can return information about all versions or only ones newer than a given version code.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ReleaseItem>getChangeLog()Get allReleaseItementries of this Change Log.List<ReleaseItem>getChangeLogSince(int lastVersionCode)Get onlyReleaseItementries newer than the given version code.
-
-
-
Method Detail
-
getChangeLog
List<ReleaseItem> getChangeLog()
Get allReleaseItementries of this Change Log.
-
getChangeLogSince
List<ReleaseItem> getChangeLogSince(int lastVersionCode)
Get onlyReleaseItementries newer than the given version code.- Parameters:
lastVersionCode-ReleaseItementries with a version code lower than or equal to this value won't be returned.
-
-