1 18 package org.apache.batik.script.jacl; 19 20 import java.net.URL ; 21 22 import org.apache.batik.script.Interpreter; 23 import org.apache.batik.script.InterpreterFactory; 24 25 30 public class JaclInterpreterFactory implements InterpreterFactory { 31 32 final static String TEXT_TCL = "text/tcl"; 33 34 37 public JaclInterpreterFactory() { 38 } 39 40 43 public String getMimeType() { return TEXT_TCL; } 44 45 50 public Interpreter createInterpreter(URL documentURL) { 51 return new JaclInterpreter(); 52 } 53 } 54 | Popular Tags |