1 20 package org.enhydra.barracuda.core.util.dom; 21 22 import java.io.IOException ; 23 import java.util.Locale ; 24 import org.w3c.dom.Document ; 25 26 27 46 public interface DOMLoader { 47 57 public Document getDOM(Class clazz) throws IOException ; 58 59 70 public Document getDOM(Class clazz, Locale locale) throws IOException ; 71 72 82 public Document getDOM(String docPath) throws IOException ; 83 84 95 public Document getDOM(String docPath, Locale locale) throws IOException ; 96 } 97 | Popular Tags |