.getOWLAnnotationProperty(
OWLRDFVocabulary.RDFS_LABEL.getIRI()))) {
OWLAnnotationValue value = annotation.getValue();
if (value instanceof IRI) {
IRI asIRI = (IRI) value;
allLabels.put(asIRI.toQuotedString(), null);
} else if (value instanceof OWLLiteral) {
OWLLiteral sLiteral = (OWLLiteral) value;
allLabels.put(sLiteral.getLiteral(), sLiteral.getLang());
}
}