uriSchemeHandler.RealURISchemeHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of URISchemeHandler Show documentation
Show all versions of URISchemeHandler Show documentation
A Java library to open and register applications with a URI scheme.
The newest version!
package uriSchemeHandler;
import java.io.IOException;
import java.net.URI;
public interface RealURISchemeHandler {
void open(URI uri) throws IOException;
void register(String schemeName, String applicationPath) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy