Computer Science 225
Advanced Programming

Spring 2017, Siena College

TwoTimers BlueJ Project

Click here to download a BlueJ project for TwoTimers.


TwoTimers Source Code

The Java source code for TwoTimers is below. Click on a file name to download it.


TwoTimers.java

/*
 * Example TwoTimers: a name conflict between two classes that both
 * have a class named Timer
 *
 * Jim Teresco, Siena College, Computer Science 225, Spring 2017
 *
 */

import java.util.*;
import javax.swing.*;

public class TwoTimers {

    public static void main(String[] args) {
	
        // uncomment the next line to try this out:
        //new Timer();
    }
}