
/* 
 * Access.java (Defines data structure required for Disk Access.).
 *
 * Written by : Nitin  Motgi (nmotgi@cs.ucf.edu)
 * 
 *
 * ASSUMPTIONS :
 *
 * 1. Request time is always in seconds.
 * 2. The request will be in the order of arrival time.
 *
 * Portions copyright(c) 2001 to School of Electrical Engineering and 
 * Computer Science, UCF, Orlando.                   
 *                                    
 * Use and distribution of this source code are strictly governed by 
 * terms and conditions set by the authors.
 * 
 * $Id : Directory.java, 03/26/2001. $
 *            
 * Revision History:
 *
 * 1. Created basic structure           Nitin,        v1.0.0  04/02/2001.
 * 2. Added Documentation.              Nitin,        v1.0.1  04/02/2001.
*/

import java.io.*;
import java.util.*;

public class Access{
	int track;
	int sector;
	int head;
	float requestTime;
}/* End Access.*/


