Package org.fenixedu.academic.domain.util.icalendar

Examples of org.fenixedu.academic.domain.util.icalendar.ClassEventBean


                    matcher = p.matcher(summary);
                    summary = matcher.replaceAll(" ");
                }

                bean =
                        new ClassEventBean(lessonInstance.getBeginDateTime(), lessonInstance.getEndDateTime(), false, location,
                                url + "/sumarios", summary, getShift());
            } else {
                if (getLessonSpaceOccupation() != null) {
                    location.add(getLessonSpaceOccupation().getRoom());
                }
                DateTime endDate =
                        new DateTime(aDay.getYear(), aDay.getMonthOfYear(), aDay.getDayOfMonth(), getEndHourMinuteSecond()
                                .getHour(), getEndHourMinuteSecond().getMinuteOfHour(), getEndHourMinuteSecond()
                                .getSecondOfMinute(), 0);

                bean = new ClassEventBean(beginDate, endDate, false, location, url, null, getShift());
            }

            result.add(bean);
        }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.util.icalendar.ClassEventBean

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.