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

com.sun.webkit.plugin.PluginHandler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
 */
package com.sun.webkit.plugin;

import java.net.URL;

interface PluginHandler {
    String getName();
    String getFileName();
    String getDescription();
    
    String[] supportedMIMETypes();
    boolean isSupportedMIMEType(String mimeType);
    boolean isSupportedPlatform();
    Plugin createPlugin(URL url, String mimeType,
                           String[] pNames, String[] pValues);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy