This commit is contained in:
2007-12-01 09:30:03 +00:00
parent 588a0e6693
commit d74c9d2874
3 changed files with 59 additions and 1 deletions

View File

@ -925,5 +925,23 @@ public class AseAwkPanel extends Panel implements DropTargetListener
textArea.setText (fb.toString());
}
void clear ()
{
conIn.setText ("");
srcIn.setText ("");
conOut.setText ("");
srcOut.setText ("");
}
void setConsoleInput (String str)
{
conIn.setText (str);
}
void setSourceInput (String str)
{
srcIn.setText (str);
}
}