Update of /var/cvs/src/org/mmbase/module
In directory james.mmbase.org:/tmp/cvs-serv28754

Modified Files:
      Tag: MMBase-1_8
        ReloadableModule.java WatchedReloadableModule.java 
Log Message:
adde a forward compatible constructor


See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/module


Index: ReloadableModule.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/module/ReloadableModule.java,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -u -b -r1.9.2.2 -r1.9.2.3
--- ReloadableModule.java       8 Oct 2007 14:14:37 -0000       1.9.2.2
+++ ReloadableModule.java       12 Aug 2008 08:17:45 -0000      1.9.2.3
@@ -20,12 +20,19 @@
  *
  * @author Michiel Meeuwissen
  * @since MMBase-1.8
- * @version $Id: ReloadableModule.java,v 1.9.2.2 2007/10/08 14:14:37 michiel 
Exp $
+ * @version $Id: ReloadableModule.java,v 1.9.2.3 2008/08/12 08:17:45 michiel 
Exp $
  */
 public abstract class ReloadableModule extends Module {
 
     private static final Logger log = 
Logging.getLoggerInstance(ReloadableModule.class);
 
+    public ReloadableModule() {
+    }
+    public ReloadableModule(String name) {
+        super(name);
+    }
+
+
     /**
      * Reloads the configuration file.
      *


Index: WatchedReloadableModule.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/module/WatchedReloadableModule.java,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -u -b -r1.4 -r1.4.2.1
--- WatchedReloadableModule.java        19 Jun 2006 08:38:59 -0000      1.4
+++ WatchedReloadableModule.java        12 Aug 2008 08:17:45 -0000      1.4.2.1
@@ -17,7 +17,7 @@
  *
  * @author   Michiel Meeuwissen
  * @since    MMBase-1.8
- * @version  $Id: WatchedReloadableModule.java,v 1.4 2006/06/19 08:38:59 
michiel Exp $
+ * @version  $Id: WatchedReloadableModule.java,v 1.4.2.1 2008/08/12 08:17:45 
michiel Exp $
  */
 public abstract class WatchedReloadableModule extends ReloadableModule {
 
@@ -30,6 +30,12 @@
             }
         };
 
+    public WatchedReloadableModule() {
+    }
+    public WatchedReloadableModule(String name) {
+        super(name);
+    }
+
     /**
      * [EMAIL PROTECTED] 
      * On the onload of a reloadable module, a filewatcher is started. You 
should call
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to