/[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 635 - (show annotations) (download)
Wed Mar 24 08:57:30 2010 UTC (14 years, 1 month ago) by torben
File size: 383 byte(s)
First semi-functional version
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 == null)
13 return false;
14 if (! (o instanceof Side9Data) )
15 return false;
16
17 Side9Data data = (Side9Data) o;
18 return this.url.equals( data.url );
19
20 }
21
22
23 }
24

  ViewVC Help
Powered by ViewVC 1.1.20