feliz("Navidad") & prospero(2010)

by Francho Joven

23 Dec 2009

. Comments

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