1 23 24 package org.hammurapi.results; 25 26 import java.io.File ; 27 28 import org.apache.tools.ant.BuildException; 29 import org.hammurapi.HammurapiException; 30 31 35 public interface AnnotationContext { 36 public interface FileEntry { 37 40 File getFile(); 41 42 45 String getPath(); 46 } 47 48 54 FileEntry getNextFile(String extension) throws HammurapiException; 55 56 String getExtension(); 57 58 Object getParameter(String name) throws BuildException; 59 60 boolean isEmbeddedStyle(); 61 } 62 | Popular Tags |