You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Ravi Kumar <rk...@inprise.com> on 2000/12/31 23:57:14 UTC

possible minor bug in J_1_2_2

StylesheetRoot.process does not
1. use the diagnostic / verbosity setting from parent processor or
2. provide a mechanism to directly set them.

The following does not suppress warnings:

processor.setQuiteConflictWarnings();
stylesheetRoot = processor.processStylesheet(styleInputSource);
stylesheetRoot.process(docInputsource, resultTarget);


The problem appears to be:
stylesheet.process creates an instance of processor
but does not transfer it's parentProcessor verbosity settings;

Am I right? Or is there another way of setting this?

Regards
Ravi