. Comments
<br /> public class BestDesires {<br /> public BestDesires() {<br /> List<ContactEntryt> people = getAllPeople(Planets.World);<br /> for(ContactEntry person : people) {<br /> String occupation = person.getOccupation();</p> <p> if( person.isGoodPerson() && !( occupation.equals("politic") || occupation.equals("banker") ) ) {<br /> System.out.println( person.getName() + ", I wish you a Merry Christmas and a happy new Year.");<br /> }<br /> }<br /> }<br /> }<br />
comparte