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

net.sf.fmj.registry.RegistryContents Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show 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