Lines Matching refs:period

129      * with the associated date, period and number of occurrences.
271 * according to its period and remaining number of occurrences.
385 * period and number of occurrences.
391 * subsequent ones are spaced as specified by the period parameter.
394 * its associated date, period and number of occurrences cannot be updated.
403 * @param period The period of the timer notification (in milliseconds).
414 * the period or the number of occurrences is negative.
420 // Date date, long period, long nbOccurences)
424 Date date, long period, long nbOccurences, boolean fixedRate)
434 // Invalid timer period value exception:
435 // Check that the period and the nbOccurences are POSITIVE VALUES.
437 if ((period < 0) || (nbOccurences < 0)) {
485 obj[TIMER_PERIOD_INDEX] = (Object) period;
501 .append("\n\tNotification period = ")
502 .append(period)
534 * period and number of occurrences.
540 * subsequent ones are spaced as specified by the period parameter.
543 * its associated date, period and number of occurrences cannot be updated.
553 * @param period The period of the timer notification (in milliseconds).
559 * the period or the number of occurrences is negative.
565 // Date date, long period)
569 Date date, long period, long nbOccurences)
572 return addNotification(type, message, userData, date, period, nbOccurences, false);
578 * and period and a null number of occurrences.
580 * The timer notification will repeat continuously using the timer period using a <i>fixed-delay</i>
588 * spaced as specified by the period parameter.
594 * @param period The period of the timer notification (in milliseconds).
599 * the period is negative.
603 // Date date, long period)
607 Date date, long period)
610 return (addNotification(type, message, userData, date, period, 0));
616 * and a null period and number of occurrences.
692 .append("\n\tNotification period = ")
892 * Gets a copy of the period (in milliseconds) associated to a timer notification.
896 * @return A copy of the period or null if the identifier is not mapped to any
1036 .append("\n\tNotification period = ")
1061 * If the timer period of the timer notification has a non null periodicity,
1063 * The associated TimerAlarmClock is updated by setting its timeout to the period value.
1065 * If the timer period has a defined number of occurrences, the timer
1077 Long period = (Long)obj[TIMER_PERIOD_INDEX];
1082 if (period.longValue() != 0) {
1093 date.setTime(date.getTime() + period.longValue());
1106 alarmClock = new TimerAlarmClock(this, period.longValue());
1123 .append("\n\tNotification period = ")
1124 .append(period)