net.sf.fmj.registry.RegistryContents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fmj Show documentation
Show all versions of fmj Show documentation
Freedom for Media in Java
The newest version!
package net.sf.fmj.registry;
import java.util.*;
import javax.media.*;
import net.sf.fmj.media.*;
/**
* The contents of the registry.
*
* @author Warren Bloomer
* @author Ken Larson
*/
class RegistryContents
{
/** Lists of Plugin for each category */
@SuppressWarnings("unchecked")
Vector[] plugins
= new Vector[]
{
new Vector(),
new Vector(),
new Vector(),
new Vector(),
new Vector(),
};
/** a List of protocol prefixes */
Vector protocolPrefixList = new Vector();
/** a list of content prefixes */
Vector contentPrefixList = new Vector();
/** the MIME-type map. It maps file extensions to mime-types. */
// Hashtable mimetypeMap = new Hashtable();
/** MIME type map */
final MimeTable mimeTable = new MimeTable();
/** a List of protocol prefixes */
Vector captureDeviceInfoList
= new Vector();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy