return new Conjunction(result);
}
}
protected void addDatatype(final List<Concept> result, au.csiro.snorocket.core.model.Datatype datatype) {
Feature feature = new NamedFeature(factory.lookupFeatureId(datatype.getFeature()));
Operator operator = Operator.EQUALS;
Literal literal;
if (datatype.getLiteral() instanceof DecimalLiteral) {
literal = new au.csiro.ontology.model.DecimalLiteral(((DecimalLiteral) datatype.getLiteral()).getValue());
} else if (datatype.getLiteral() instanceof IntegerLiteral) {