Changeset 4610
- Timestamp:
- Oct 28, 2008, 2:20:41 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/data/PlateData.java
r4517 r4610 142 142 } 143 143 144 private Set<PlateData> parentSet; 145 /** 146 Duplicate of {@link #getParents()} but with a set instead of a map. 147 This is needed if we want to use the parent plates in a query. 148 @see #getParents() 149 @since 2.9 150 @hibernate.set table="`PlateParents`" lazy="true" inverse="true" 151 @hibernate.collection-key column="`plate_id`" 152 @hibernate.collection-many-to-many column="`parent_id`" 153 class="net.sf.basedb.core.data.PlateData" 154 */ 155 Set<PlateData> getParentSet() 156 { 157 return parentSet; 158 } 159 void setParentSet(Set<PlateData> parentSet) 160 { 161 this.parentSet = parentSet; 162 } 163 164 144 165 private Set<PlateData> children; 145 166 /** -
trunk/src/core/net/sf/basedb/core/data/PlateGeometryData.java
r4517 r4610 22 22 */ 23 23 package net.sf.basedb.core.data; 24 25 import java.util.Set; 24 26 25 27 /** … … 106 108 this.columns = columns; 107 109 } 110 111 private Set<PlateTypeData> plateTypes; 112 /** 113 This is the invers end. 114 @see PlateTypeData#getPlateGeometry() 115 @since 2.9 116 @hibernate.set lazy="true" inverse="true" cascade="delete" 117 @hibernate.collection-key column="`plategeometry_id`" 118 @hibernate.collection-one-to-many class="net.sf.basedb.core.data.PlateTypeData" 119 */ 120 Set<PlateTypeData> getPlateTypes() 121 { 122 return plateTypes; 123 } 124 void setPlateTypes(Set<PlateTypeData> plateTypes) 125 { 126 this.plateTypes = plateTypes; 127 } 108 128 } -
trunk/www/lims/arraybatches/list_batches.jsp
r4596 r4610 275 275 id="slides" 276 276 title="Slides" 277 property="&arraySlides(name)" 278 datatype="string" 279 filterable="true" 277 280 /> 278 281 <tbl:columndef -
trunk/www/lims/arraydesigns/list_designs.jsp
r4596 r4610 372 372 id="batches" 373 373 title="Batches" 374 property="&arrayBatches(name)" 375 datatype="string" 376 filterable="true" 374 377 /> 375 378 <tbl:columndef -
trunk/www/lims/geometries/list_geometries.jsp
r4511 r4610 237 237 id="plateTypes" 238 238 title="Plate types" 239 property="&plateTypes(name)" 240 datatype="string" 241 filterable="true" 239 242 /> 240 243 <tbl:columndef -
trunk/www/lims/plates/list_plates.jsp
r4596 r4610 310 310 id="parents" 311 311 title="Parents" 312 property="&parentSet(name)" 313 datatype="string" 314 filterable="true" 312 315 /> 313 316 <tbl:columndef 314 317 id="children" 315 318 title="Children" 319 property="&children(name)" 320 datatype="string" 321 filterable="true" 316 322 /> 317 323 <tbl:columndef -
trunk/www/lims/platetypes/list_platetypes.jsp
r4578 r4610 255 255 id="plates" 256 256 title="Plates" 257 property="&plates(name)" 258 datatype="string" 259 filterable="true" 257 260 /> 258 261 <tbl:columndef
Note: See TracChangeset
for help on using the changeset viewer.