1 18 package org.apache.batik.script.jpython; 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 JPythonInterpreterFactory implements InterpreterFactory { 31 32 final static String TEXT_PYTHON = "text/python"; 33 34 37 public JPythonInterpreterFactory() { 38 } 39 40 43 public String getMimeType() { return TEXT_PYTHON; } 44 45 50 public Interpreter createInterpreter(URL documentURL) { 51 return new JPythonInterpreter(); 52 } 53 } 54 | Popular Tags |