Added few methods to redirect calls from main to DebugGui for compatibility.

This commit is contained in:
igor%mir2.org 2004-09-24 16:14:02 +00:00
Родитель 8ae93826aa
Коммит 7523c5c791
1 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -143,6 +143,21 @@ public class Main {
return debugGui.console.getErr(); return debugGui.console.getErr();
} }
public void pack()
{
debugGui.pack();
}
public void setSize(int w, int h)
{
debugGui.setSize(w, h);
}
public void setVisible(boolean flag)
{
debugGui.setVisible(flag);
}
public static void main(String[] args) public static void main(String[] args)
throws Exception throws Exception
{ {