Package com.wiquery.plugins.demo.test

Examples of com.wiquery.plugins.demo.test.Person


 
   public List<Person> getPersons() {
      if(persons == null) {       
        persons = new ArrayList<Person>();
        for(int i=0; i<205;i++) {
          Person person = new Person();
          person.setId(new Long(i));
          person.setName("Name-" + i);
          person.setLastName("LastName-" + i);
          persons.add(person);
        }       
      }
      return persons;
    }
View Full Code Here


 
   public List<Person> getPersons() {
      if(persons == null) {       
        persons = new ArrayList<Person>();
        for(int i=0; i<205;i++) {
          Person person = new Person();
          person.setId(new Long(i));
          person.setName("Name-" + i);
          person.setLastName("LastName-" + i);
          persons.add(person);
        }       
      }
      return persons;
    }
View Full Code Here

TOP

Related Classes of com.wiquery.plugins.demo.test.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.