/[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 1354 - (show annotations) (download)
Wed Apr 20 18:57:18 2011 UTC (13 years ago) by torben
File size: 432 byte(s)
more Use GenericJavaUtils
1 package dk.thoerup.side9;
2
3 public class Side9Data {
4 public String url;
5
6 public int width;
7 public int height;
8 public String caption = "";
9
10
11 @Override
12 public boolean equals(Object o) {
13 if (o == null)
14 return false;
15 if (! (o instanceof Side9Data) )
16 return false;
17
18 Side9Data data = (Side9Data) o;
19 return (this.url.equals( data.url ) && this.caption.equals(data.caption) );
20
21 }
22
23
24 }
25

  ViewVC Help
Powered by ViewVC 1.1.20