Package asciiPanel

Examples of asciiPanel.AsciiPanel


  private AsciiPanel terminal;
  private iryrwarosh.screens.Screen screen;
 
  public ApplicationMain(){
    super();
    terminal = new AsciiPanel();
    terminal.setDefaultBackgroundColor(Common.guiBackground);
    terminal.setDefaultForegroundColor(Common.guiForeground);
    add(terminal);
    pack();
    screen = new StartScreen();
View Full Code Here


  private AsciiPanel terminal;
  private iryrwarosh.screens.Screen screen;
 
  public AppletMain(){
    super();
    terminal = new AsciiPanel();
    terminal.setDefaultBackgroundColor(Common.guiBackground);
    terminal.setDefaultForegroundColor(Common.guiForeground);
    add(terminal);
    screen = new iryrwarosh.screens.StartScreen();
    addKeyListener(this);
View Full Code Here

TOP

Related Classes of asciiPanel.AsciiPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.