зеркало из https://github.com/mozilla/pjs.git
Added few methods to redirect calls from main to DebugGui for compatibility.
This commit is contained in:
Родитель
d5ac93b044
Коммит
d923a13d08
|
@ -143,6 +143,21 @@ public class Main {
|
|||
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)
|
||||
throws Exception
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче