Interface SubformDataMapper<T>
-
- Type Parameters:
T- The destination type
- All Superinterfaces:
DataMapper<T>
- All Known Implementing Classes:
AbstractEinzelempfehlungDataMapper,AbstractKpaTherapieverlaufDataMapper,AbstractSubformDataMapper,EinzelempfehlungProzedurDataMapper,EinzelempfehlungStudieDataMapper,EinzelempfehlungWirkstoffDataMapper,KpaEcogDataMapper,KpaHistologieDataMapper,KpaProzedurDataMapper,KpaTherapielinieDataMapper,KpaTumorausbreitungDataMapper,KpaVerwandteDataMapper,KpaVorbefundeDataMapper,MolekulargenetikMsiDataMapper
public interface SubformDataMapper<T> extends DataMapper<T>
General interface for subform data mappers- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<T>getByParentId(int parentId)Loads a data set from database and maps it into destination data type-
Methods inherited from interface dev.pcvolkmer.mv64e.datamapper.mapper.DataMapper
getById
-
-
-
-
Method Detail
-
getByParentId
java.util.List<T> getByParentId(int parentId)
Loads a data set from database and maps it into destination data type- Parameters:
parentId- The database id of the parent procedure data set- Returns:
- The data set to be loaded
-
-