summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java')
-rw-r--r--pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java36
1 files changed, 20 insertions, 16 deletions
diff --git a/pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java b/pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java
index 0536276ed..59293ee1b 100644
--- a/pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java
+++ b/pki/base/common/src/com/netscape/cmscore/jobs/CronRange.java
@@ -17,24 +17,27 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.cmscore.jobs;
+
+
+
/**
* class representing one Job cron element
+ * <p>here, an "item" refers to one of the 5 fields in a cron string;
+ * "element" refers to any comma-deliminated element in an
+ * "item"...which includes both numbers and '-' separated ranges.
* <p>
- * here, an "item" refers to one of the 5 fields in a cron string; "element"
- * refers to any comma-deliminated element in an "item"...which includes both
- * numbers and '-' separated ranges.
- * <p>
- * an Element can contain either an integer number or a range specified as
- * CronRange. In case of integer numbers, begin and end are of the same value
- *
+ * an Element can contain either an integer number or a range
+ * specified as CronRange. In case of integer numbers, begin
+ * and end are of the same value
+ *
* @author cfu
* @version $Revision$, $Date$
*/
public class CronRange {
int mBegin = 0;
int mEnd = 0;
-
- public CronRange() {
+
+ public CronRange () {
}
/**
@@ -43,7 +46,7 @@ public class CronRange {
public void setBegin(int i) {
mBegin = i;
}
-
+
/**
* gets the lower boundary value of the range
*/
@@ -66,16 +69,17 @@ public class CronRange {
}
/**
- * checks to see if the lower and higher boundary values are within the
- * min/max.
- *
+ * checks to see if the lower and higher boundary values are
+ * within the min/max.
* @param min the minimum value one can specify in this field
* @param max the maximum value one can specify in this field
- * @return a boolean (true/false) on whether the begin/end values are within
- * the min/max passed in the params
+ * @return a boolean (true/false) on whether the begin/end values
+ * are within the min/max passed in the params
*/
public boolean isValidRange(int min, int max) {
- if ((mEnd < mBegin) || (mBegin < min) || (mEnd > max))
+ if ((mEnd < mBegin) ||
+ (mBegin < min) ||
+ (mEnd > max))
return false;
else
return true;