rename next/prev to later/earlier

This commit is contained in:
Andreas Schildbach 2012-03-18 16:01:57 +01:00
parent d06a579533
commit 2459927617
70 changed files with 219 additions and 219 deletions

View file

@ -107,8 +107,8 @@ public class LinzProviderLiveTest extends AbstractProviderLiveTest
final QueryConnectionsResult result = provider.queryConnections(new Location(LocationType.STATION, 0, null, "Linz Hauptbahnhof"), null,
new Location(LocationType.STATION, 0, null, "Linz Auwiesen"), new Date(), true, ALL_PRODUCTS, WalkSpeed.FAST, Accessibility.NEUTRAL);
System.out.println(result);
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.context, true);
System.out.println(moreResult);
final QueryConnectionsResult laterResult = provider.queryMoreConnections(result.context, true);
System.out.println(laterResult);
}
@Test
@ -117,7 +117,7 @@ public class LinzProviderLiveTest extends AbstractProviderLiveTest
final QueryConnectionsResult result = provider.queryConnections(new Location(LocationType.STATION, 0, null, "Linz Auwiesen"), null,
new Location(LocationType.STATION, 0, null, "Linz Hafen"), new Date(), true, ALL_PRODUCTS, WalkSpeed.SLOW, Accessibility.NEUTRAL);
System.out.println(result);
// final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.context, true);
// System.out.println(moreResult);
// final QueryConnectionsResult laterResult = provider.queryMoreConnections(result.context, true);
// System.out.println(laterResult);
}
}