static LPair findBackRefsWithFieldNames(Concept c, Class type) {
new LPair l;
if (c != null && c.backRefs != null) for (Concept.Ref r : cloneList(c.backRefs))
if (instanceOf(r.concept(), type))
l.add(pair((A) r.concept(), fieldNameForConceptLink(r.concept(), c)));
ret l;
}