Package org.strecks.holidaybooking.domain

Examples of org.strecks.holidaybooking.domain.LeaveType


  }

  public Collection<LeaveType> getLeaveTypes()
  {
    List<LeaveType> list = new ArrayList<LeaveType>();
    list.add(new LeaveType(1, "Vacation"));
    list.add(new LeaveType(2, "Personal Day"));
    list.add(new LeaveType(3, "Jolly"));
    return list;
  }
View Full Code Here

TOP

Related Classes of org.strecks.holidaybooking.domain.LeaveType

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.