if (rdf != null) {
rdf_property = rdf.value();
inverse = false;
return new FacadingPredicate(inverse, rdf_property);
} else {
RDFInverse rdfi = FacadingInvocationHelper.getAnnotation(method, RDFInverse.class);
if (rdfi != null) {
rdf_property = rdfi.value();
inverse = true;
return new FacadingPredicate(inverse, rdf_property);
} else {
if (propBuilder != null) {
String fName = FacadingInvocationHelper.getBaseName(method);