java source code that controls traffic lights
#1

Reply
#2
i will like to view a java source code for adaptive traffic control
system
Reply
#3
java source code that controls traffic lights

The Traffic Light Java Applet Source Code

Here is the source code for the program we created in class on Wednesday, October 6, 2004.
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import java.awt.HeadlessException;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JApplet;
import javax.swing.JButton;

/*
* Created on Oct 6, 2004
*
* @author Steve Tanimoto
*/
public class TrafficLight extends JApplet implements ActionListener {
int phase = 0;
Container c;
/**
* @throws java.awt.HeadlessException
*/
public TrafficLight() throws HeadlessException {
JButton jb = new JButton("Change!");
c = this.getContentPane();
c.setLayout(new BorderLayout());
c.add(jb, BorderLayout.SOUTH);
jb.addActionListener(this);
c.setBackground(Color.green);
}
public void actionPerformed(ActionEvent e) {
phase = (phase + 1) % 3;
if (phase == 0) {
c.setBackground(Color.green);
}
else if (phase == 1) {
c.setBackground(Color.yellow);
}
else if (phase == 2) {
c.setBackground(Color.red);
}
}
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: flow chart of traffic lights system logic, ppt presentations for ece on intelligence traffic lights control, traffic lights based on microcontroller, java source code for traffic control project, fuzzy logic in traffic lights ppt, traffic control java source code, java code for traffic control system,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  free download source code of online college magazine 5 17,907 29-06-2018, 10:09 AM
Last Post: Guest
  opengl source code for butterfly 3 3,287 14-05-2018, 08:57 AM
Last Post: Akshatha k
  ice cream parlour management system in vb source code 4 5,293 04-04-2018, 11:58 PM
Last Post: vprk77
  dwt code in java for image 2 6,359 24-03-2018, 10:06 PM
Last Post: Guest
  source code in php for online training and placement cell management 1 6,691 23-03-2018, 09:06 AM
Last Post: ritzi
  free download college website project in html with source code 2 4,623 24-02-2018, 10:46 AM
Last Post: Guest
  source code for hospital management system in jsp 4 1,957 13-01-2018, 10:51 AM
Last Post: dhanabhagya
  source code in c for dna cryptography in computer sc ppt 1 1,540 09-01-2018, 09:59 PM
Last Post: harshavarshinib
  to find whether a number is krishnamurthy number or not using java 1 11,274 01-01-2018, 11:39 AM
Last Post: dhanabhagya
  java programmings for bus ticket reservation source code 1 6,225 09-11-2017, 11:28 PM
Last Post: Ayushi Nagar

Forum Jump: