Package jpiv2

Examples of jpiv2.DisplayPanel


public class TestRunner {
  public static void main(String[] args)
  {
    Display2D display=new GBDisplay();
    JFrame frame=new JFrame("test");
    DisplayPanel dPanel=new DisplayPanel(display);
    frame.add(dPanel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
    frame.pack();
    frame.setVisible(true);
    TestPlugin plugin=new TestPlugin(display,15);
View Full Code Here

TOP

Related Classes of jpiv2.DisplayPanel

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.