public void render(Cell.Context context, UsageReference object, SafeHtmlBuilder sb) {
sb.appendEscaped(getDisplayName(object));
AxiomTypeGroup axiomTypeGroup = AxiomTypeGroup.getAxiomTypeGroup(object.getAxiomType());
final Optional<OWLRDFVocabulary> owlrdfVocabulary = axiomTypeGroup.getOWLRDFVocabulary();
if(owlrdfVocabulary.isPresent()) {
final OWLRDFVocabulary vocabulary = owlrdfVocabulary.get();
String shortName = vocabulary.getNamespace().name().toLowerCase() + ":" + vocabulary.getShortName();
sb.appendHtmlConstant("<br><span style=\"color: gray; font-size: 90%;\">(" + shortName + ")</span>");
}
}