Package cz.muni.fi.pa165.ddtroops.entities

Examples of cz.muni.fi.pa165.ddtroops.entities.Squad.addMember()


        squad.setName(squadDTO.name);
        squad.setTask(squadDTO.task);

        for (HeroDTO h : squadDTO.members) {
            squad.addMember(createHero(h));
        }
        squad.setLeader(createHero(squadDTO.leader));       
        return squad;
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.