1 16 17 package org.apache.xerces.xs; 18 19 import org.w3c.dom.DOMConfiguration ; 20 import org.w3c.dom.ls.LSInput ; 21 22 26 public interface XSLoader { 27 51 public DOMConfiguration getConfig(); 52 53 60 public XSModel loadURIList(StringList uriList); 61 62 69 public XSModel loadInputList(LSInputList is); 70 71 78 public XSModel loadURI(String uri); 79 80 87 public XSModel load(LSInput is); 88 89 } 90 | Popular Tags |