/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureEntry.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/banedk/DepartureEntry.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1059 by torben, Sat Jul 10 10:53:44 2010 UTC revision 1060 by torben, Thu Sep 16 13:32:10 2010 UTC
# Line 1  Line 1 
1  package dk.thoerup.traininfoservice.banedk;  package dk.thoerup.traininfoservice.banedk;
2    
3    import org.simpleframework.xml.Element;
4    import org.simpleframework.xml.Root;
5    
6    @Root(name="train")
7  public class DepartureEntry implements Comparable<DepartureEntry> {  public class DepartureEntry implements Comparable<DepartureEntry> {
8          private String time;              
9          private int updated;              @Element
10            private String time;
11            
12            @Element
13            private int updated;
14            
15            @Element(name="trainnumber")
16          private String trainNumber;          private String trainNumber;
17            
18            @Element
19          private String destination;          private String destination;
20          private String origin;            
21          private String location;                  @Element
22          private String status;            private String origin;
23            
24            @Element
25            private String location;
26            
27            @Element
28            private String status;
29            
30            @Element
31          private String note;          private String note;
32            
33            @Element
34          private String type;          private String type;
35                    
36                    
# Line 98  public class DepartureEntry implements C Line 120  public class DepartureEntry implements C
120                  }                  }
121                                    
122          }          }
123            
124          public String getUpdatedString() {          public String getUpdatedString() {
125                  String updStr;                  String updStr;
126                                    

Legend:
Removed from v.1059  
changed lines
  Added in v.1060

  ViewVC Help
Powered by ViewVC 1.1.20