View Single Post
  #3 (permalink)  
Old 05-04-2008, 07:06 PM
Sniper-X Sniper-X is offline
Member
 
Join Date: May 2008
Posts: 3
Sniper-X is on a distinguished road
this is the code i used
/**
* Add applicants to the system.
*/
public void addApplicant (Person newPerson)
{
if(persons.size() == capacity) {
System.out.println("All advisors are busy, please come back later." );
}
else {
persons.add(newPerson);
}
}

This is the code i used and it doesnt work can u help
Reply With Quote