/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/provider/DepartureFactory.java
ViewVC logotype

Contents of /android/TrainInfo/src/dk/thoerup/traininfo/provider/DepartureFactory.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 237 - (show annotations) (download)
Sat Aug 8 19:02:20 2009 UTC (14 years, 9 months ago) by torben
File size: 329 byte(s)
First version
1 package dk.thoerup.traininfo.provider;
2
3
4 public class DepartureFactory {
5 private static DepartureProvider provider = null;
6
7
8 public static DepartureProvider getProvider() {
9 if (provider == null) {
10 //provider = new DebugProvider();
11 provider = new XmlDepartureProvider();
12 }
13
14 return provider;
15 }
16 }

  ViewVC Help
Powered by ViewVC 1.1.20