Package prop.hex.presentacio.drivers

Examples of prop.hex.presentacio.drivers.VisualitzadorPartida


   * Crea un JFrame i obre la finestra utilitzant com a contingut VisualitzadorPartida.
   */
  private static void instanciaFinestra()
  {
    JFrame f = new JFrame( "Visor partida" );
    f.add( new VisualitzadorPartida() );
    f.pack();
    f.setVisible( true );
  }
View Full Code Here

TOP

Related Classes of prop.hex.presentacio.drivers.VisualitzadorPartida

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.