This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BoostIT implements Angajeaza { | |
public static String XP_LEVEL = "Senior"; | |
public Set<Senior> seniors = new HashSet<Senior>; | |
public Set Cautam(List<Developer> devs) { | |
for (Developer d : devs) { | |
if (d.stieJava().equals(XP_LEVEL)) { | |
seniors.add(d); | |
} |