Back to project page android_opengles.
The source code is released under:
MIT License
If you think the Android project android_opengles listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fi.iki.elonen; // w w w . ja v a 2 s. c o m /** * @author Paul S. Hawke (paul.hawke@gmail.com) * On: 9/14/13 at 8:09 AM */ public interface WebServerPluginInfo { String[] getMimeTypes(); String[] getIndexFilesForMimeType(String mime); WebServerPlugin getWebServerPlugin(String mimeType); }