Package visual

Examples of visual.DrawSemaphore


public class Main {

  public static void main(String[] args) {

    JFrame window = new JFrame();
    DrawSemaphore panel = new DrawSemaphore();
   
    Semaphore semaphore = new Semaphore();
    semaphore.addObserver(panel);
   
    JButton button = new JButton("Placebo");
    button.setLocation(20, 200);
    button.addActionListener(new ButtonEventHandler(semaphore));
    panel.add(button);
   
    window.setSize(60, 250);
    window.add(panel);
    window.setVisible(true);
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
View Full Code Here

TOP

Related Classes of visual.DrawSemaphore

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.