⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 registrycontents.java

📁 FMJ(freedom media for java)是java视频开发的新选择
💻 JAVA
字号:
package net.sf.fmj.utility;import java.util.Vector;import javax.media.CaptureDeviceInfo;import net.sf.fmj.media.MimeTable;/** *  * @author Warren Bloomer * @author Ken Larson * */public class RegistryContents{	/** Lists of Plugin for each category */	Vector<String>[] plugins = new Vector[] {				new Vector<String>(),				new Vector<String>(),				new Vector<String>(),				new Vector<String>(),				new Vector<String>(),		};	/** a List of protocol prefixes */	Vector<String> protocolPrefixList = new Vector<String>();	// Vector of String	/** a list of content prefixes */	Vector<String> contentPrefixList = new Vector<String>();	// Vector of String		/** 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<CaptureDeviceInfo> captureDeviceInfoList = new Vector<CaptureDeviceInfo>();	// Vector of CaptureDeviceInfo	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -