4142434445464748
private int wideAccumulator; private SpaceWar app; public WellcomeSpaceWar(SpaceWar app) { this.app = app; space = new Space(); panel = space; }
4647484950515253545556
private String current; private Timer timer; public HowToPlay() { super(); space = new Space(); html = new JEditorPane(); html.setEditable(false); html.setOpaque(false); space.addSpaceItem(new JEditorPanelWrapper(html));
39404142434445464748
private Timer timer; private Iterator lines; private ScrollingText lastLine; public AboutSpaceWar() { space = new Space(); panel = space; timer = new Timer(2000, this); timer.setCoalesce(true); }
5354555657585960
public PlaySpaceWar(SpaceWar app) { super(); this.app = app; this.timer = new Timer(500, this); space = new Space(); panel = space; }