187 |
13 Oct 06 |
enell |
1 |
/* |
187 |
13 Oct 06 |
enell |
$Id$ |
187 |
13 Oct 06 |
enell |
3 |
|
187 |
13 Oct 06 |
enell |
Copyright (C) 2006 Johan Enell |
187 |
13 Oct 06 |
enell |
5 |
|
187 |
13 Oct 06 |
enell |
This file is part of BASE - BioArray Software Environment. |
187 |
13 Oct 06 |
enell |
Available at http://base.thep.lu.se/ |
187 |
13 Oct 06 |
enell |
8 |
|
187 |
13 Oct 06 |
enell |
BASE is free software; you can redistribute it and/or modify it |
187 |
13 Oct 06 |
enell |
under the terms of the GNU General Public License as published by |
187 |
13 Oct 06 |
enell |
the Free Software Foundation; either version 2 of the License, or |
187 |
13 Oct 06 |
enell |
(at your option) any later version. |
187 |
13 Oct 06 |
enell |
13 |
|
187 |
13 Oct 06 |
enell |
BASE is distributed in the hope that it will be useful, but |
187 |
13 Oct 06 |
enell |
WITHOUT ANY WARRANTY; without even the implied warranty of |
187 |
13 Oct 06 |
enell |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
187 |
13 Oct 06 |
enell |
General Public License for more details. |
187 |
13 Oct 06 |
enell |
18 |
|
187 |
13 Oct 06 |
enell |
You should have received a copy of the GNU General Public License |
187 |
13 Oct 06 |
enell |
along with this program; if not, write to the Free Software |
187 |
13 Oct 06 |
enell |
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
187 |
13 Oct 06 |
enell |
02111-1307, USA. |
187 |
13 Oct 06 |
enell |
23 |
*/ |
187 |
13 Oct 06 |
enell |
24 |
package ztest; |
187 |
13 Oct 06 |
enell |
25 |
|
187 |
13 Oct 06 |
enell |
26 |
public class Spot |
187 |
13 Oct 06 |
enell |
27 |
{ |
221 |
20 Dec 06 |
enell |
28 |
private double m; |
187 |
13 Oct 06 |
enell |
29 |
|
197 |
21 Nov 06 |
enell |
30 |
public Spot(Double m) |
187 |
13 Oct 06 |
enell |
31 |
{ |
187 |
13 Oct 06 |
enell |
32 |
this.m = m; |
187 |
13 Oct 06 |
enell |
33 |
} |
187 |
13 Oct 06 |
enell |
34 |
|
197 |
21 Nov 06 |
enell |
35 |
public final double getM() |
187 |
13 Oct 06 |
enell |
36 |
{ |
187 |
13 Oct 06 |
enell |
37 |
return m; |
187 |
13 Oct 06 |
enell |
38 |
} |
187 |
13 Oct 06 |
enell |
39 |
|
197 |
21 Nov 06 |
enell |
40 |
@Override |
197 |
21 Nov 06 |
enell |
41 |
public String toString() |
197 |
21 Nov 06 |
enell |
42 |
{ |
197 |
21 Nov 06 |
enell |
43 |
return "["+m+"]"; |
197 |
21 Nov 06 |
enell |
44 |
} |
197 |
21 Nov 06 |
enell |
45 |
|
187 |
13 Oct 06 |
enell |
46 |
|
187 |
13 Oct 06 |
enell |
47 |
} |