blob: 768777c49e03e1f9ca6ae74b997d7dafa1c2369c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package pt.tumba.parser.swf;
import java.io.IOException;
/**
* Interface for passing a SWF file header
*
*@author unknown
*@created 15 de Setembro de 2002
*/
public interface SWFHeader {
/**
* SWF File header.
*
*@param length -1 if the length is unknown and must be inferred
*@param frameCount -1 if the framecount is unknown and must be
* inferred
*@param version Description of the Parameter
*@param twipsWidth Description of the Parameter
*@param twipsHeight Description of the Parameter
*@param frameRate Description of the Parameter
*@exception IOException Description of the Exception
*/
public void header(int version, long length,
int twipsWidth, int twipsHeight,
int frameRate, int frameCount) throws IOException;
}
|