Package com.company.client.domain

Examples of com.company.client.domain.Candidate


    // Do something interesting with 's' here on the server.
    return s;
  }
 
  public ArrayList<Candidate> getCandidates() {
    Candidate candidate1 = new Candidate("Obama", 45);
    Candidate candidate2 = new Candidate("Hillary", 60);
    ArrayList<Candidate> candidates = new ArrayList<Candidate>();
    candidates.add(candidate1);
    candidates.add(candidate2);
    LOGGER.info("returning candidates list");
    return candidates;
View Full Code Here

TOP

Related Classes of com.company.client.domain.Candidate

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.