Package com.eastidea.qaforum.home

Examples of com.eastidea.qaforum.home.TestRegionList


  }
 
  public List <SelectItem> getRegionSelectItemList() {
    regionSelectItemList = new ArrayList<SelectItem>();
     
      List<TestRegion> listTestRegion = new TestRegionList().getResultList();
    for (TestRegion testRegion : listTestRegion) {       
      regionSelectItemList.add(new SelectItem(testRegion.getId(), testRegion.getName()));
    }
     
      return regionSelectItemList;
View Full Code Here

TOP

Related Classes of com.eastidea.qaforum.home.TestRegionList

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.