r9890 - helma/helma/trunk/src/helma/objectmodel/db

[email protected] Mon, 14 Sep 2009 22:02:14 +0200 (CEST)
Newsgroups gmane.comp.java.helma.cvs
Message-ID <20090914200214.B3A793D0E3@mia>
Author: hannes
Date: 2009-09-14 22:02:14 +0200 (Mon, 14 Sep 2009)
New Revision: 9890

Modified:
   helma/helma/trunk/src/helma/objectmodel/db/SubnodeList.java
Log:
Make fields protected for easier subclassing.

Details at http://dev.helma.org/trac/helma/changeset/9890

Modified: helma/helma/trunk/src/helma/objectmodel/db/SubnodeList.java
===================================================================
--- helma/helma/trunk/src/helma/objectmodel/db/SubnodeList.java	2009-09-14 19:59:33 UTC (rev 9889)
+++ helma/helma/trunk/src/helma/objectmodel/db/SubnodeList.java	2009-09-14 20:02:14 UTC (rev 9890)
@@ -25,11 +25,11 @@
  */
 public class SubnodeList implements Serializable {
 
-    Node node;
-    List list;
+    protected Node node;
+    protected List list;
 
-    transient long lastSubnodeFetch = 0;
-    transient long lastSubnodeChange = 0;
+    transient protected long lastSubnodeFetch = 0;
+    transient protected long lastSubnodeChange = 0;
     
 
     /**