Example #1
0
 public CustomConsole(CustomConsole oldConsole, Widget newParent) {
   super(oldConsole.c, oldConsole.sz, newParent, oldConsole.cap.text);
   out = oldConsole.out;
   in = oldConsole.in;
   out.parent = this;
   in.parent = this;
   setfocus(in);
 }
Example #2
0
 public void append(String text, Color color) {
   out.append(text, color);
   log += "\n" + text;
 }