Examples of LeaveType


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
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.