com.ail.core.urlhandler.classpath
Class Handler
java.lang.Object
java.net.URLStreamHandler
com.ail.core.urlhandler.classpath.Handler
public class Handler
- extends java.net.URLStreamHandler
The handler for the "classpath://" URLs. All this class does is to
transparently transform a "classpath://" URL into a reference for a class
resource.
For example, a URL like: 'classpath://myschema.xsd' is translated into a call
to
getClass().getResource("myschema.xsd");
and a URL like: 'classpath://com.ail.core.configure/Configure.xsd' is translated
to
getClass().getResource("/com/ail/core/configure/Configure.xsd").
- Author:
- randerson
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Handler
public Handler()