Package org.apache.myfaces.custom.schedule.util

Examples of org.apache.myfaces.custom.schedule.util.ScheduleEntryComparator


    )
    {
        super();
        this.id = id;
        this.name = name;
        this.entries = new TreeSet(new ScheduleEntryComparator());
    }
View Full Code Here


     * @param date the date
     */
    public ScheduleDay(Date date)
    {
        super(date);
        this.entries = new TreeSet(new ScheduleEntryComparator());
    }
View Full Code Here

    /**
     * Creates a new SimpleScheduleModel object.
     */
    public SimpleScheduleModel()
    {
        this.entries = new TreeSet(new ScheduleEntryComparator());
        this.holidays = new HashMap();
    }
View Full Code Here

     * @param date the date
     */
    public ScheduleDay(Date date)
    {
        super(date);
        this.entries = new TreeSet(new ScheduleEntryComparator());
    }
View Full Code Here

     * @param date the date
     */
    public ScheduleDay(Date date, TimeZone tz)
    {
        super(date, tz);
        this.entries = new TreeSet(new ScheduleEntryComparator());
    }
View Full Code Here

    /**
     * Creates a new SimpleScheduleModel object.
     */
    public SimpleScheduleModel()
    {
        this.entries = new TreeSet(new ScheduleEntryComparator());
        this.holidays = new HashMap();
    }
View Full Code Here

TOP

Related Classes of org.apache.myfaces.custom.schedule.util.ScheduleEntryComparator

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.