Changeset 265
- Timestamp:
- Apr 27, 2007, 2:58:06 PM (15 years ago)
- Location:
- trunk/se/lu/onk/BaseFile/src/basefile
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/se/lu/onk/BaseFile/src/basefile/BASEFileAssaySection.java
r250 r265 37 37 { 38 38 super("assays"); 39 this.setAnnotationColumns(""); 39 40 } 40 41 … … 82 83 { 83 84 return getColIndex("annotationColumns", col); 84 }85 86 public final List<String> getColumns()87 {88 return findFieldList("columns");89 }90 91 public final int getColumnsColIndex(String col) throws BASEFileException92 {93 return getColIndex("columns", col);94 }95 96 public final String setColumns(Object... values)97 {98 return setHeader("columns", values);99 85 } 100 86 -
trunk/se/lu/onk/BaseFile/src/basefile/BASEFileDataSection.java
r250 r265 24 24 package basefile; 25 25 26 import java.util.List; 27 26 28 public abstract class BASEFileDataSection extends BASEFileSection 27 29 { … … 46 48 { 47 49 super(type); 50 this.setCount(0); 51 this.setColumns(); 48 52 } 49 53 … … 61 65 { 62 66 return width; 67 } 68 69 public final List<String> getColumns() 70 { 71 return this.findFieldList("columns"); 72 } 73 74 public final int getColumnsColIndex(String col) throws BASEFileException 75 { 76 return this.getColIndex("columns", col); 77 } 78 79 public final String setColumns(Object... values) 80 { 81 return setHeader("columns", values); 63 82 } 64 83 -
trunk/se/lu/onk/BaseFile/src/basefile/BASEFileSpotSection.java
r253 r265 35 35 { 36 36 super("spots"); 37 this.setChannels(0); 38 this.setAssayFields(); 39 this.setAssays(); 37 40 } 38 41 … … 128 131 return reporterData.set(i, reporter); 129 132 } 130 131 public List<String> getColumns()132 {133 return this.findFieldList("columns");134 }135 136 public int getColumnsColIndex(String col) throws BASEFileException137 {138 return this.getColIndex("columns", col);139 }140 133 141 134 public List<Integer> getAssays() … … 220 213 { 221 214 return setHeader("assayFields", values); 222 }223 224 public final String setColumns(Object... values)225 {226 return setHeader("columns", values);227 215 } 228 216
Note: See TracChangeset
for help on using the changeset viewer.