Package org.nxplanner.util

Examples of org.nxplanner.util.Interval


        public TimeEntryMemento(int personId1, int personId2, Date startTime, Date endTime) {
            this.personId1 = personId1;
            this.personId2 = personId2;
            if (startTime != null && endTime != null) {
                interval = new Interval(startTime.getTime(), endTime.getTime());
            } else if (startTime != null) {
                interval = new Interval(startTime.getTime());
            } else if (startTime != null) {
                interval = new Interval(endTime.getTime());
            }
        }
View Full Code Here

TOP

Related Classes of org.nxplanner.util.Interval

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.