Source code: org/media/mn8/util/cron/CronElement.java
1 /*
2 * $COPYRIGHT$
3 * $Id: CronElement.java,v 1.1 2002/10/25 20:40:49 atech Exp $
4 *
5 * Date Author Changes
6 * May 16 2002 Antal Attila Created
7 */
8
9 package org.media.mn8.util.cron;
10
11 /**
12 * Simple cron element fields
13 *
14 * @author <a href="mailto:atech@nolimits.ro">Antal Attila</a>
15 */
16 public class CronElement {
17 public int min;
18 public int hour;
19 public int day;
20 public int month;
21 public boolean week;
22 public CronElement() {
23 }
24 }