/[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 1506 - (hide annotations) (download)
Wed Jun 8 16:10:49 2011 UTC (13 years ago) by torben
File size: 511 byte(s)
add tag parameter for fuzzy string match
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 torben 1506 import org.simpleframework.xml.Attribute;
8 torben 1065 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 torben 1506 @Attribute
15     public boolean fuzzystrmatch = false;
16 torben 1065
17 torben 1071 @ElementList(inline=true, required=false)
18 torben 1065 public List<StationEntry> entries = new ArrayList<StationEntry>();
19    
20 torben 1408
21 torben 1065 }

  ViewVC Help
Powered by ViewVC 1.1.20