View Javadoc

1   /*** PlateWellDescriptor.java - part of the MirkE (say murky) application for colormetric analysis emphesizing 
2   kinetics.
3   
4   Created by: Scott Menor on 21 July, 2004.
5   Last modified by: Scott Menor on 12 November, 2004
6   
7   Copyright (c) 2004 Arizona State University - Cancer Research Institute. All rights reserved.
8   
9   MirkE is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13  
14  MirkE is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  GNU General Public License for more details.
18  
19  You should have received a copy of the GNU General Public License
20  along with MirkE; if not, write to the Free Software
21  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  US
22  */
23  
24  package edu.asu.cri.MirkE.dataStructures;
25  
26  /***
27   * @author smenor
28   *
29   */
30  public class PlateWellDescriptor {
31  	private long id;
32  	
33  	/***
34  	
35  	 @return id
36  	 */
37  	public long getId() {
38  		return id;
39  	}
40  	
41  	/***
42  		@param id
43  	 */
44  	public void setId(long id) {
45  		this.id = id;
46  	}
47  
48  	private String plateWellType;
49  	
50  	/*** 
51  		@param plateWellType
52  		*/
53  	public void setPlateWellType(String plateWellType) {
54  		this.plateWellType = plateWellType;
55  	}
56  	
57  	/***
58  		@return plateWellType
59  	 */
60  	public String getPlateWellType() {
61  		return plateWellType;
62  	}
63  		
64  	private String plateRow;
65  	
66  	/***
67  		@param plateRow
68  	 */
69  	public void setPlateRow(String plateRow) {
70  		this.plateRow = plateRow;
71  	}
72  	
73  	/***
74  		@return plateRow
75  	 */
76  	public String getPlateRow() {
77  		return plateRow;
78  	}
79  	
80  	private String plateColumn;
81  	
82  	/***
83  		@param plateColumn
84  	 */
85  	public void setPlateColumn(String plateColumn) {
86  		this.plateColumn = plateColumn;
87  	}
88  	
89  	/***
90  		@return plateColumn
91  	 */
92  	public String getPlateColumn() {
93  		return plateColumn;
94  	}
95  	
96  	private String plateIdentifier;
97  	
98  	/***
99  		@param plateIdentifier	
100 	 
101 	 */
102 	public void setPlateIdentifier(String plateIdentifier) {
103 		this.plateIdentifier = plateIdentifier;
104 	}
105 	
106 	/***
107 		
108 	 @return plateIdentifier
109 	 */
110 	public String getPlateIdentifier() {
111 		return plateIdentifier;
112 	}
113 
114 	/***
115 		
116 	 @return string
117 	 */
118     
119 	public String toString() {
120 		
121 		return "" + plateIdentifier + " " + plateRow + plateColumn + ": " + plateWellType;
122 	}
123     
124 }