Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Student-Admin-Redesign/Sample applet
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (42 sloc)
1018 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package example_applet; | |
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 | |
*/ | |
@SuppressWarnings("serial") | |
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); | |
} | |
} | |
} |