?? swffilesignature.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 + -