change method name (of the method newly added to PropertyDaoJena) from getClassesRestrictedOn to getClassesWithRestrictionOnProperty (NIHVIVO-404)

This commit is contained in:
sjm222 2010-04-28 17:01:17 +00:00
parent d718ebb9de
commit 886d88e129
5 changed files with 11 additions and 11 deletions

View file

@ -50,7 +50,7 @@ public class VClassWebappsListingController extends BaseEditController {
if (request.getParameter("showPropertyRestrictions") != null) { if (request.getParameter("showPropertyRestrictions") != null) {
PropertyDao pdao = getWebappDaoFactory().getObjectPropertyDao(); PropertyDao pdao = getWebappDaoFactory().getObjectPropertyDao();
classes = pdao.getClassesRestrictedOn(request.getParameter("propertyURI")); classes = pdao.getClassesWithRestrictionOnProperty(request.getParameter("propertyURI"));
} else { } else {
VClassDao vcdao = getWebappDaoFactory().getVClassDao(); VClassDao vcdao = getWebappDaoFactory().getVClassDao();

View file

@ -43,6 +43,6 @@ public interface PropertyDao {
List <String> getEquivalentPropertyURIs(String propertyURI); List <String> getEquivalentPropertyURIs(String propertyURI);
List <VClass> getClassesRestrictedOn(String propertyURI); List <VClass> getClassesWithRestrictionOnProperty(String propertyURI);
} }

View file

@ -185,8 +185,8 @@ class DataPropertyDaoFiltering extends BaseFiltering implements DataPropertyDao{
innerDataPropertyDao.removeEquivalentProperty(property, equivalentProperty); innerDataPropertyDao.removeEquivalentProperty(property, equivalentProperty);
} }
public List <VClass> getClassesRestrictedOn(String propertyURI) { public List <VClass> getClassesWithRestrictionOnProperty(String propertyURI) {
return innerDataPropertyDao.getClassesRestrictedOn(propertyURI); return innerDataPropertyDao.getClassesWithRestrictionOnProperty(propertyURI);
} }
} }

View file

@ -198,8 +198,8 @@ class ObjectPropertyDaoFiltering extends BaseFiltering implements ObjectProperty
return innerObjectPropertyDao.skipEditForm(predicateURI); return innerObjectPropertyDao.skipEditForm(predicateURI);
} }
public List <VClass> getClassesRestrictedOn(String propertyURI) { public List <VClass> getClassesWithRestrictionOnProperty(String propertyURI) {
return innerObjectPropertyDao.getClassesRestrictedOn(propertyURI); return innerObjectPropertyDao.getClassesWithRestrictionOnProperty(propertyURI);
} }
} }

View file

@ -283,10 +283,10 @@ public class PropertyDaoJena extends JenaBaseDao implements PropertyDao {
* definitions involving a restriction on the given property. * definitions involving a restriction on the given property.
*/ */
public List <VClass> getClassesRestrictedOn(String propertyURI) { public List <VClass> getClassesWithRestrictionOnProperty(String propertyURI) {
if (propertyURI == null) { if (propertyURI == null) {
log.info("getClassesRestrictedOn: called with null propertyURI"); log.info("getClassesWithRestrictionOnProperty: called with null propertyURI");
return null; return null;
} }
@ -308,11 +308,11 @@ public class PropertyDaoJena extends JenaBaseDao implements PropertyDao {
if ( statement.getSubject().canAs(OntClass.class) ) { if ( statement.getSubject().canAs(OntClass.class) ) {
classURISet.addAll(getRelatedClasses((OntClass) statement.getSubject().as(OntClass.class))); classURISet.addAll(getRelatedClasses((OntClass) statement.getSubject().as(OntClass.class)));
} else { } else {
log.warn("getClassesRestrictedOn: Unexpected use of onProperty: it is not applied to a restriction"); log.warn("getClassesWithRestrictionOnProperty: Unexpected use of onProperty: it is not applied to a class");
} }
} }
} else { } else {
log.error("getClassesRestrictedOn: Error: didn't find a Property in the ontology model for the URI: " + propertyURI); log.error("getClassesWithRestrictionOnProperty: Error: didn't find a Property in the ontology model for the URI: " + propertyURI);
} }
} finally { } finally {
ontModel.leaveCriticalSection(); ontModel.leaveCriticalSection();
@ -331,7 +331,7 @@ public class PropertyDaoJena extends JenaBaseDao implements PropertyDao {
if (vc != null) { if (vc != null) {
classes.add(vc); classes.add(vc);
} else { } else {
log.error("getClassesRestrictedOn: Error: no VClass found for URI: " + curi); log.error("getClassesWithRestrictionOnProperty: Error: no VClass found for URI: " + curi);
} }
} }