Subversion Repositories WebE

Compare Revisions

Last modification

Ignore whitespace Rev 27 → Rev 34

/trunk/src/ch/ffhs/webE/dao/RelationshipTypeDAOImpl.java
26,7 → 26,7
*/
@SuppressWarnings("unchecked")
@Override
public List<RelationshipType> listRelationshipTypes()
public List<RelationshipType> getRelTypes()
{
 
List<RelationshipType> relType = null;
100,7 → 100,7
* Used to get a relationship type by ID
*/
@Override
public RelationshipType listRelTypeById(int relTypeID)
public RelationshipType getRelTypeById(int relTypeID)
{
RelationshipType relType = null;
try