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

📄 swffilesignature.java

📁 java和flash混合编程
💻 JAVA
字号:
/*
 * Created on Jul 4, 2003
 */
package com.anotherbigidea.flash.interfaces;

/**
 * Interface for passing the SWF file signature.
 * 
 * This allows the new Flash 6/MX Compressed File signature to be specified.
 * If this interface is not implemented, or the signature(..) method is not
 * called then the assumption is that the file signature is the normal,
 * non-compressed, one.
 * 
 * @author D.N.G. Main
 */
public interface SWFFileSignature {
                                                  
	//--File signatures
	public static final String SIGNATURE_NORMAL     = "FWS";
	public static final String SIGNATURE_COMPRESSED = "CWS"; 

	/**
	 * Pass the signature.  This method must be called before the header(..)
	 * method in SWFHeader. 
	 * @param sig the 3 char signature - one of the SIGNATURE_* constants.
	 */
	public void signature( String sig );
}

⌨️ 快捷键说明

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