Examples of EthiopianYear


Examples of org.sis.ancmessaging.enums.EthiopianYear

  @RequestMapping(value = "getyearsajax", method = RequestMethod.GET)
  public @ResponseBody List<EthiopianYear> getYearsAjax() {
    List<Integer> years = EthiopianYear.getYears();
    List<EthiopianYear> ethYears = new ArrayList<EthiopianYear>();
    for (Integer year : years) {
      EthiopianYear newYear = new EthiopianYear();
      newYear.setYear(year);
      ethYears.add(newYear);
    }
    return ethYears;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.