registrycontents.java
来自「FMJ(freedom media for java)是java视频开发的新选择」· Java 代码 · 共 42 行
JAVA
42 行
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 + =
减小字号Ctrl + -
显示快捷键?