1 18 19 package org.apache.tools.ant.taskdefs; 20 21 import java.io.File ; 22 23 29 public interface XSLTLiaison { 30 31 39 String FILE_PROTOCOL_PREFIX = "file://"; 40 41 47 void setStylesheet(File stylesheet) throws Exception ; 48 49 56 void addParam(String name, String expression) throws Exception ; 57 58 66 void transform(File infile, File outfile) throws Exception ; 67 68 } | Popular Tags |