Changeset 4880
- Timestamp:
- Apr 3, 2009, 11:39:56 AM (13 years ago)
- Location:
- trunk/src/core/net/sf/basedb/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Hybridization.java
r4517 r4880 28 28 import net.sf.basedb.core.query.Hql; 29 29 30 import java.util.Date; 30 31 import java.util.Set; 31 32 import java.util.HashSet; … … 41 42 public class Hybridization 42 43 extends AnnotatedItem<HybridizationData> 44 implements Registered 43 45 { 44 46 /** … … 135 137 } 136 138 // ------------------------------------------- 137 139 /* 140 From the Registered interface 141 ------------------------------------------- 142 */ 143 @Override 144 public Date getEntryDate() 145 { 146 return getCreationEvent().getEntryDate(); 147 } 148 // ------------------------------------------- 138 149 /* 139 150 From the BasicItem class -
trunk/src/core/net/sf/basedb/core/MeasuredBioMaterial.java
r4677 r4880 24 24 package net.sf.basedb.core; 25 25 26 import java.util.Date; 26 27 import java.util.Set; 27 28 … … 51 52 public abstract class MeasuredBioMaterial<D extends MeasuredBioMaterialData> 52 53 extends BioMaterial<D> 54 implements Registered 53 55 { 54 56 … … 141 143 { 142 144 return getCreationEvent().getProtocol(); 145 } 146 // ------------------------------------------- 147 /* 148 From the Registered interface 149 ------------------------------------------- 150 */ 151 @Override 152 public Date getEntryDate() 153 { 154 return getCreationEvent().getEntryDate(); 143 155 } 144 156 // -------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.