/[projects]/android/Side9/src/dk/thoerup/side9/Side9Data.java
ViewVC logotype

Contents of /android/Side9/src/dk/thoerup/side9/Side9Data.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 634 - (show annotations) (download)
Wed Mar 24 07:27:34 2010 UTC (14 years, 1 month ago) by torben
File size: 347 byte(s)
Only re-load the image if image URL (from XML) changes
1 package dk.thoerup.side9;
2
3 public class Side9Data {
4 public String url;
5 public int width;
6 public int height;
7 public String caption;
8
9
10 @Override
11 public boolean equals(Object o) {
12 if (! (o instanceof Side9Data) )
13 return false;
14
15 Side9Data data = (Side9Data) o;
16 return this.url.equals( data.url );
17
18 }
19
20
21 }
22

  ViewVC Help
Powered by ViewVC 1.1.20