aboutsummaryrefslogtreecommitdiffstats
path: root/gl4java/jau/awt/WinHandleAccess.java
blob: b6e8c8771d562a626a70000a4c440aedd7bb6988 (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 int getWinHandle(Component component, Graphics g);

    public abstract int getWinDepth(Component component, Graphics g);

}