itcs3146-project/dummyAlgorithm.java

18 lines
599 B
Java
Raw Normal View History

public class dummyAlgorithm implements baseAlgorithm{
int[] memoryBlock;
2012-11-06 19:53:11 -05:00
dummyAlgorithm(int memorySize){
/* Constructor needed for each algorithm */
memoryBlock = new int[memorySize];
}
public void allocate(int jobID, int jobSize, int jobTime){
/* This method to be overloaded by each algorithm */
2012-11-06 19:53:11 -05:00
System.out.println("Allocating job " + jobID + " with size: " + jobSize + " for: " + jobTime + " milliseconds.");
}
public void deallocate(int jobSize, int beginningLocation){
2012-11-06 19:53:11 -05:00
System.out.println("Removing job with size: " + jobSize + " beginning at: " + beginningLocation);
}
}