package synchronize2;

/**
 * @author  Ralf Kunze (rkunze@uos.de), Institut fuer Informatik, Universitaet Osnabrueck
 * @date 04.05.2007
 */
public class Test {

	public static void main(String[] args) {
		
		Point p = new Point();
		
		ChangerThread t1 = new ChangerThread(p);
		ChangerThread t2 = new ChangerThread(p);
		
		t1.start();
		t2.start();
	}

}
