* @param documentURL the url for the document which will be scripted
* @param svg12 whether the document is an SVG 1.2 document
*/
public Interpreter createInterpreter(URL documentURL, boolean svg12) {
if (svg12) {
return new SVG12RhinoInterpreter(documentURL);
}
return new RhinoInterpreter(documentURL);
}