Big AWT patch.
From-SVN: r34976
This commit is contained in:
parent
406a65d0db
commit
c7a136d3ef
70 changed files with 4838 additions and 277 deletions
|
@ -15,6 +15,7 @@ import java.net.URL;
|
|||
public abstract class Toolkit
|
||||
{
|
||||
static Toolkit defaultToolkit;
|
||||
static EventQueue systemEventQueue = new EventQueue();
|
||||
|
||||
public static synchronized Toolkit getDefaultToolkit()
|
||||
{
|
||||
|
@ -26,6 +27,11 @@ public abstract class Toolkit
|
|||
protected abstract FramePeer createFrame(Frame target);
|
||||
public abstract Image getImage(URL url);
|
||||
|
||||
public final EventQueue getSystemEventQueue()
|
||||
{
|
||||
return systemEventQueue;
|
||||
}
|
||||
|
||||
private static void init() { }
|
||||
// private static native void init();
|
||||
// static { init(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue