/[projects]/android/TrainInfoCommon/src/dk/thoerup/android/traininfo/common/StationBean.java
ViewVC logotype

Annotation of /android/TrainInfoCommon/src/dk/thoerup/android/traininfo/common/StationBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1408 - (hide annotations) (download)
Mon May 2 11:54:17 2011 UTC (13 years, 1 month ago) by torben
File size: 458 byte(s)
Move StationEntry to it's own java file (and thereby making it a top-level class)
1 torben 1065 package dk.thoerup.android.traininfo.common;
2    
3     import java.io.Serializable;
4     import java.util.ArrayList;
5     import java.util.List;
6    
7     import org.simpleframework.xml.Element;
8     import org.simpleframework.xml.ElementList;
9     import org.simpleframework.xml.Root;
10    
11 torben 1070 @Root(name="stations", strict=false)
12 torben 1065 public class StationBean implements Serializable {
13    
14    
15 torben 1071 @ElementList(inline=true, required=false)
16 torben 1065 public List<StationEntry> entries = new ArrayList<StationEntry>();
17    
18 torben 1408
19 torben 1065 }

  ViewVC Help
Powered by ViewVC 1.1.20