KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > snapper > business > xml > CustomResolver


1 /*
2  * Created on May 19, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.snapper.business.xml;
8
9 import org.xml.sax.EntityResolver JavaDoc;
10 import org.xml.sax.InputSource JavaDoc;
11
12 /**
13  * @author lola
14  *
15  * TODO To change the template for this generated type comment go to
16  * Window - Preferences - Java - Code Style - Code Templates
17  */

18 public class CustomResolver implements EntityResolver JavaDoc {
19       public InputSource JavaDoc resolveEntity (String JavaDoc publicId, String JavaDoc systemId) {
20     System.out.println(" publicId systemId "+publicId+" "+systemId);
21            return null;
22          }
23        }
24     
25
Popular Tags