xs.toRDF(attribute, subject, prop, value, t, null, null, ctx);
}
return;
}
else {
XMLBean type = def.get_type(ctx);
// simple type?
if (type instanceof simpleType)
((simpleType) type).toRDF(subject, prop, attribute, value, null, null, ctx);
// else add plain literal
else subject.addProperty(prop, model.createLiteral(schema.processWhitespace(attribute,value,null,ctx)));