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

@ -86,10 +86,10 @@ public class BahnProviderLiveTest extends AbstractProviderLiveTest
new Location(LocationType.STATION, 8010205, null, "Leipzig Hbf"), new Date(), true, ALL_PRODUCTS, WalkSpeed.NORMAL,
Accessibility.NEUTRAL);
System.out.println(result);
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.context, true);
final QueryConnectionsResult laterResult = provider.queryMoreConnections(result.context, true);
for (final Connection connection : result.connections)
provider.getConnectionDetails(connection.link);
System.out.println(moreResult);
System.out.println(laterResult);
}
@Test
@ -99,10 +99,10 @@ public class BahnProviderLiveTest extends AbstractProviderLiveTest
new Location(LocationType.ANY, 0, null, "Tutzinger-Hof-Platz, Starnberg"), new Date(), true, ALL_PRODUCTS, WalkSpeed.NORMAL,
Accessibility.NEUTRAL);
System.out.println(result);
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.context, true);
final QueryConnectionsResult laterResult = provider.queryMoreConnections(result.context, true);
for (final Connection connection : result.connections)
provider.getConnectionDetails(connection.link);
System.out.println(moreResult);
System.out.println(laterResult);
}
@Test
@ -113,9 +113,9 @@ public class BahnProviderLiveTest extends AbstractProviderLiveTest
new Date(), true, ALL_PRODUCTS, WalkSpeed.NORMAL, Accessibility.NEUTRAL);
System.out.println(result);
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.context, true);
final QueryConnectionsResult laterResult = provider.queryMoreConnections(result.context, true);
for (final Connection connection : result.connections)
provider.getConnectionDetails(connection.link);
System.out.println(moreResult);
System.out.println(laterResult);
}
}