for ( String uri : values.keySet() ) {
String value = values.get(uri);
if ( value.trim().length() > 0 ) {
Property prop = ResourceFactory.createProperty(uri);
if ( doSet && ont.getPropertyValue(prop) != null ) {
ont.removeAll(prop);
}
ont.addProperty(prop, value.trim());
}
}
}