/********************************************************************************** * $URL: https://source.sakaiproject.org/svn/calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/MonthlyRecurrenceRule.java $ * $Id: MonthlyRecurrenceRule.java 105079 2012-02-24 23:08:11Z ottenhoff@longsight.com $ *********************************************************************************** * * Copyright (c) 2003, 2004, 2005, 2006, 2008 The Sakai Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.opensource.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * **********************************************************************************/ package org.sakaiproject.calendar.impl; import java.util.GregorianCalendar; import java.util.Stack; import org.sakaiproject.time.api.Time; import org.w3c.dom.Document; import org.w3c.dom.Element; /** * <p>MonthlyRecurrenceRule is a time range generating rule that is based on a monthly recurrence.</p> */ public class MonthlyRecurrenceRule extends RecurrenceRuleBase { /** The unique type / short frequency description. */ protected static final String FREQ = "month"; /** * Default constructor */ public MonthlyRecurrenceRule() { super(); } // MonthlyRecurrenceRule /** * Construct with no limits. * @param interval Every this many number of months: 1 would be every month. */ public MonthlyRecurrenceRule(int interval) { super(interval); } // MonthlyRecurrenceRule /** * Construct with count limit. * @param interval Every this many number of months: 1 would be every month. * @param count For this many occurrences - if 0, does not limit. */ public MonthlyRecurrenceRule(int interval, int count) { super(interval, count); } // MonthlyRecurrenceRule /** * Construct with time limit. * @param interval Every this many number of months: 1 would be every month. * @param until No time ranges past this time are generated - if null, does not limit. */ public MonthlyRecurrenceRule(int interval, Time until) { super(interval, until); } // MonthlyRecurrenceRule /* (non-Javadoc) * @see org.chefproject.service.calendar.RecurrenceRule#toXml(org.w3c.dom.Document, java.util.Stack) */ public Element toXml(Document doc, Stack stack) { // add the "rule" element to the stack'ed element Element rule = doc.createElement("rule"); ((Element)stack.peek()).appendChild(rule); // set the class name - old style for CHEF 1.2.10 compatibility rule.setAttribute("class", "org.chefproject.osid.calendar.MonthlyRecurrenceRule"); // set the rule class name w/o package, for modern usage rule.setAttribute("name", "MonthlyRecurrenceRule"); // Do the base class part. setBaseClassXML(rule); return rule; } /* (non-Javadoc) * @see org.chefproject.service.calendar.RecurrenceRuleBase#getRecurrenceType() */ protected int getRecurrenceType() { return GregorianCalendar.MONTH; } /** * {@inheritDoc} */ public String getFrequencyDescription() { return rb.getString("set.months"); } /** * {@inheritDoc} */ public String getFrequency() { return FREQ; } }