blob: 1a491cec70fd0062c0ec583247e251e419ffe31d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @(#) WinHandleAccess.java
*/
package gl4java.jau.awt;
import java.awt.Component;
import java.awt.Graphics;
/**
* The base interface for accessing the native window handle
*
* @version 2.00, 21. April 1999
* @author Sven Goethel
*/
public interface WinHandleAccess
{
public abstract long getWinHandle(Component component, Graphics g);
public abstract int getWinDepth(Component component, Graphics g);
}
|