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

Modified Files:
        MMObjectNode.java MMObjectBuilder.java SmartPathFunction.java 
Log Message:
Fixes un javadoc


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


Index: MMObjectNode.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/module/core/MMObjectNode.java,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -b -r1.214 -r1.215
--- MMObjectNode.java   19 Mar 2008 09:53:35 -0000      1.214
+++ MMObjectNode.java   25 Mar 2008 21:00:25 -0000      1.215
@@ -38,7 +38,7 @@
  * @author Eduard Witteveen
  * @author Michiel Meeuwissen
  * @author Ernst Bunders
- * @version $Id: MMObjectNode.java,v 1.214 2008/03/19 09:53:35 michiel Exp $
+ * @version $Id: MMObjectNode.java,v 1.215 2008/03/25 21:00:25 nklasens Exp $
  */
 
 public class MMObjectNode implements org.mmbase.util.SizeMeasurable, 
java.io.Serializable  {
@@ -683,7 +683,6 @@
 
     /**
      * Get a value of a certain field.
-     * @performance do not store byte values directly in node (?)
      * @param fieldName the name of the field who's data to return
      * @return the field's value as an <code>Object</code>
      */
@@ -845,7 +844,6 @@
 
     /**
      * Get a binary value of a certain field.
-     * @performance do not store byte values directly in node (?)
      * @param fieldName the name of the field who's data to return
      * @return the field's value as an <code>byte []</code> (binary/blob field)
      */


Index: MMObjectBuilder.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/module/core/MMObjectBuilder.java,v
retrieving revision 1.421
retrieving revision 1.422
diff -u -b -r1.421 -r1.422
--- MMObjectBuilder.java        16 Nov 2007 09:47:34 -0000      1.421
+++ MMObjectBuilder.java        25 Mar 2008 21:00:25 -0000      1.422
@@ -61,7 +61,7 @@
  * @author Rob van Maris
  * @author Michiel Meeuwissen
  * @author Ernst Bunders
- * @version $Id: MMObjectBuilder.java,v 1.421 2007/11/16 09:47:34 michiel Exp $
+ * @version $Id: MMObjectBuilder.java,v 1.422 2008/03/25 21:00:25 nklasens Exp 
$
  */
 public class MMObjectBuilder extends MMTable implements NodeEventListener, 
RelationEventListener {
 
@@ -2609,7 +2609,7 @@
      * Changed properties will not be saved.
      * @param properties the properties to set
      */
-    void setInitParameters(Hashtable<String, String> properties) {
+    void setInitParameters(Map<String,String> properties) {
         this.properties.putAll(properties);
         loadInitParameters();
         update();
@@ -2624,7 +2624,6 @@
     }
     /**
      * Override properties through application context
-     * @param contextPath path in application context where properties are 
located
      * @since MMBase 1.8.5
      */
     public void loadInitParameters() {
@@ -2641,7 +2640,6 @@
      * @param contextPath path in application context where properties are 
located
      * @return a <code>Map</code> containing the current properties
      * @since MMBase 1.8.2
-     * @deprecated
      */
     public Map getInitParameters(String contextPath) {
         Map map = new HashMap();


Index: SmartPathFunction.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/module/core/SmartPathFunction.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- SmartPathFunction.java      3 Feb 2008 17:33:57 -0000       1.11
+++ SmartPathFunction.java      25 Mar 2008 21:00:25 -0000      1.12
@@ -25,7 +25,7 @@
  * This class can be overriden to make an even smarter search possible.
  *
  * @since MMBase-1.8.5
- * @version $Id: SmartPathFunction.java,v 1.11 2008/02/03 17:33:57 nklasens 
Exp $
+ * @version $Id: SmartPathFunction.java,v 1.12 2008/03/25 21:00:25 nklasens 
Exp $
  */
 public class SmartPathFunction {
     private static final Logger log = 
Logging.getLoggerInstance(SmartPathFunction.class);
@@ -80,7 +80,7 @@
 
     /**
      * the root of the path to search.
-     * @deprecated Use [EMAIL PROTECTED] #setLoader(ResourceLoder)}.
+     * @deprecated Use [EMAIL PROTECTED] #setLoader(ResourceLoader)}.
      */
     public void setRoot(String r) {
         documentRoot = r;
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to