1 19 20 28 29 package org.netbeans.modules.xml.retriever; 30 31 import java.io.File ; 32 import java.util.List ; 33 import org.openide.filesystems.FileObject; 34 35 39 public interface DocumentTypeParser { 40 41 45 boolean accept(String mimeType); 46 50 List <String > getAllLocationOfReferencedEntities(FileObject fob) throws Exception ; 51 52 List <String > getAllLocationOfReferencedEntities(File fileToBeParsed) throws Exception ; 53 } 54 | Popular Tags |