// class ConnectedWall.java //:Assignment 4: //:Student Name: Duo Zhou //:Studnet Number: 722452 /**FileName: ConnectedWall.java * Date: July, 27, 2000 * Purpose: Learn how to use JFrame, JPanel, Synchronized method, creating * multithread, the basic idea of creating GUI * Name of Files: This assignment include Building.java, ConnectedWall.java, * Elevator.java, ElevatorFrame.java, ElevatorPanel.java, * Floor.java, MailDeliveryApp.java, MailPiece.java, * Position.java, Robot.java * Brief Discription: Nothing is changed from the original sample code. */ class ConnectedWall{ Position startPos; // position to start following the wall Position stopPos; // position to stop following the wall int startDir; // in which direction to start following the wall ConnectedWall(Position startPos, Position stopPos, int startDir){ this.startPos = startPos; this.stopPos = stopPos; this.startDir = startDir; } }