Package org.wicketstuff.egrid.model

Examples of org.wicketstuff.egrid.model.Person


  }

  private List<Person> getPersons()
  {
    List<Person> persons = new ArrayList<Person>();
    persons.add(new Person("Person1","12", "Address1"));
    persons.add(new Person("Person2","13", "Address2"));
    persons.add(new Person("Person3","13", "Address3"));
    persons.add(new Person("Person4","13", "Address4"));
    persons.add(new Person("Person5","13", "Address5"));
    persons.add(new Person("Person6","13", "Address6"));
    return persons;
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.egrid.model.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.