[cvs] expresso commit by lhamel: use better method names

JCorporate Ltd jcorp at jcorporate.com
Sat Jan 29 19:41:22 UTC 2005


Log Message:
-----------
use better method names

Modified Files:
--------------
    expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab:
        CrontabEntry.java

Revision Data
-------------
Index: CrontabEntry.java
===================================================================
RCS file: /home/javacorp/.cvs/expresso/expresso/expresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab/CrontabEntry.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab/CrontabEntry.java -Lexpresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab/CrontabEntry.java -u -r1.23 -r1.24
--- expresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab/CrontabEntry.java
+++ expresso-web/WEB-INF/src/com/jcorporate/expresso/services/crontab/CrontabEntry.java
@@ -339,14 +339,34 @@
      * Return isRelative value
      *
      * @return boolean
+     * @deprecated 1/05, v5.6 use isRelative instead
      */
     public boolean isIsRelative() {
         return isRelative;
     }
 
     /**
+     * Return isRelative value
+     *
+     * @return boolean
+     */
+    public boolean isRelative() {
+        return isRelative;
+    }
+
+    /**
+     * Retrieve the isRepetitive value
+     *
+     * @return boolean
+     */
+    public boolean isRepetitive() {
+        return isRepetitive;
+    }
+
+    /**
      * Retrieve the isRepetitive value
      *
+     * @deprecated 1/05, v5.6 use isRepetitive instead
      * @return boolean
      */
     public boolean isIsRepetitive() {


More information about the cvs mailing list