Changeset 253
- Timestamp:
- Apr 10, 2007, 4:51:49 PM (16 years ago)
- Location:
- trunk/se/lu/onk/BaseFile/src/basefile
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/se/lu/onk/BaseFile/src/basefile/BASEFile.java
r250 r253 305 305 for (int i = 0; i < assaySection.getHeight(); ++i) 306 306 { 307 assaySection.getDataLine(i);307 out.println(assaySection.getDataLine(i)); 308 308 } 309 309 out.println(); … … 312 312 { 313 313 out.println(bfss.toString()); 314 out.println("DATA"); 314 for (int i = 0; i < bfss.getHeight(); ++i) 315 { 316 out.println(bfss.getDataLine(i)); 317 } 315 318 out.println(); 316 319 } -
trunk/se/lu/onk/BaseFile/src/basefile/BASEFileSpotSection.java
r250 r253 176 176 return spotData.get(i); 177 177 } 178 179 public S getSpot(int x, int y) 180 { 181 return getSpot(y * getWidth() + x); 182 } 178 183 179 184 public List<S> spotSubList(int fromIndex, int toIndex) … … 238 243 public String getDataLine(int i) 239 244 { 240 241 return null; 245 String line = getReporter(i).toString(); 246 for (int j = 0; j < getWidth(); ++j) 247 { 248 line += "\t"+getSpot(i, j); 249 } 250 return line; 242 251 } 243 252
Note: See TracChangeset
for help on using the changeset viewer.