Package com.sharomank.domain

Examples of com.sharomank.domain.Vote


        for (Vote v : getVotes()) {
            if (v.getAccount().getId().equals(voteAccount.getId())) {
                return;
            }
        }
        Vote v = new Vote();
        v.setAccount(voteAccount);
        v.setPlus(plus);
        votes.add(v);
        calculateRating();
    }
View Full Code Here

TOP

Related Classes of com.sharomank.domain.Vote

Copyright © 2018 www.massapicom. 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.