Package br.com.estudos.jsf2new.entity

Examples of br.com.estudos.jsf2new.entity.Person


public class PersonDaoMock implements PersonDao {

  @Override
  public List<Person> getPersons(){
    List<Person> persons = new ArrayList<Person>();
    persons.add(new Person(2, "Ana Mara"));   
    persons.add(new Person(4, "Antonio"));
    persons.add(new Person(3, "Cibele"));
    persons.add(new Person(1, "Robson"));
    return persons;
  }
View Full Code Here

TOP

Related Classes of br.com.estudos.jsf2new.entity.Person

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.