protected List<DBObjectNavigationList> createNavigationLists() {
List<DBObjectNavigationList> objectNavigationLists = super.createNavigationLists();
DBObject underlyingObject = getUnderlyingObject();
if (underlyingObject != null) {
DBObjectNavigationListImpl objectNavigationList = new DBObjectNavigationListImpl("Underlying " + underlyingObject.getTypeName(), underlyingObject);
objectNavigationLists.add(objectNavigationList);
}
return objectNavigationLists;
}