Package model

Examples of model.Button


   
    /*INTERFACE*/
    Interface I = new Interface();
   
    /*EVENT BUTTON*/
    Button  option = new Button(60, 60, 470, 500);
    option.setIcon(new ImageIcon("img/optionB.png"));
    Button  pause = new Button(60, 60, 405, 500);
    pause.setIcon(new ImageIcon("img/pauseB.png"));
       
      pause.addActionListener(new pauseButtonListener());
      option.addActionListener(new optionButtonListener());
   
      /*EVENT CLAVIER*/
      p.setFocusable(true);
      p.requestFocus();
View Full Code Here

TOP

Related Classes of model.Button

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.