1 23 24 package org.enhydra.xml.xmlc.deferredparsing; 25 26 import java.util.Map ; 27 28 35 public class StandardDocumentLoader extends DocumentLoaderImpl { 36 private static final StandardDocumentLoader singletonInstance = 37 new StandardDocumentLoader(); 38 39 public static final DocumentLoader getInstance() { 40 return singletonInstance; 41 } 42 43 public StandardDocumentLoader () { 44 this(null); 45 } 46 47 public StandardDocumentLoader (Map cache) { 48 super(cache); 49 } 50 } 51 | Popular Tags |