add generic types to return values.
This commit is contained in:
parent
0fea51aed7
commit
ce6058b3bb
2 changed files with 3 additions and 3 deletions
|
@ -10,9 +10,9 @@ import java.util.Collection;
|
||||||
|
|
||||||
public interface DataPropertyDao extends PropertyDao {
|
public interface DataPropertyDao extends PropertyDao {
|
||||||
|
|
||||||
public abstract List /*of DataProperty */ getAllDataProperties();
|
public abstract List<DataProperty> getAllDataProperties();
|
||||||
|
|
||||||
public abstract List /*of DataProperty */ getAllExternalIdDataProperties();
|
public abstract List<DataProperty> getAllExternalIdDataProperties();
|
||||||
|
|
||||||
void fillDataPropertiesForIndividual(Individual individual);
|
void fillDataPropertiesForIndividual(Individual individual);
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,6 @@ public interface DatatypeDao {
|
||||||
|
|
||||||
public abstract int getDatatypeIdByURI(String uri);
|
public abstract int getDatatypeIdByURI(String uri);
|
||||||
|
|
||||||
public abstract List /* of Datatype */getAllDatatypes();
|
public abstract List<Datatype> getAllDatatypes();
|
||||||
|
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue