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

com.jogamp.common.net.asset.Handler Maven / Gradle / Ivy

package com.jogamp.common.net.asset;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;

import com.jogamp.common.net.AssetURLConnection;
import com.jogamp.common.net.AssetURLContext;

/**
 * {@link URLStreamHandler} to handle the asset protocol.
 *
 * 

* This is the asset URLStreamHandler variation * using this class ClassLoader for the pkg factory model. *

*/ public class Handler extends URLStreamHandler { static final AssetURLContext localCL = new AssetURLContext() { @Override public ClassLoader getClassLoader() { return Handler.class.getClassLoader(); } }; public Handler() { super(); } @Override protected URLConnection openConnection(final URL u) throws IOException { final AssetURLConnection c = new AssetURLConnection(u, localCL); c.connect(); return c; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy