* Refreshes the settings on the stream processor using the current values from the parserConfig.
*/
private void refreshSettings() {
// Map from Sesame RDFaVersion to the RDFa short constants
short rdfaCompatibility = RDFa.VERSION_11;
RDFaVersion version = parserConfig.get(RDFaParserSettings.RDFA_COMPATIBILITY);
if(version == RDFaVersion.RDFA_1_0) {
rdfaCompatibility = RDFa.VERSION_10;
}
else if(version == RDFaVersion.RDFA_1_1) {
rdfaCompatibility = RDFa.VERSION_11;