blob: 74980b27953aa18b3d439bfe63b478544e35c766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package pt.tumba.parser.swf;
import java.io.IOException;
/**
* Common interface for Fill and Line Styles
*
*@author unknown
*@created 15 de Setembro de 2002
*/
public interface Style {
/**
* Description of the Method
*
*@param out Description of the Parameter
*@param hasAlpha Description of the Parameter
*@exception IOException Description of the Exception
*/
void write(OutStream out, boolean hasAlpha) throws IOException;
}
|