All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.java.test.TestResolver2 Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
package test;

import java.net.URL;

import javax.xml.stream.*;

/**
 * Simple debug 'resolver'...
 */
public class TestResolver2
    implements XMLResolver
{
    public Object resolveEntity(String publicId, String systemId,
                                String baseURL, String name)
    {
        System.err.println("[TestResolver2: '"+publicId+"'/'"+systemId
                           +", baseURL "+baseURL+", entity '"+name+"']");
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy