Update of /var/cvs/src/org/mmbase/datatypes/processors
In directory
james.mmbase.org:/tmp/cvs-serv17652/src/org/mmbase/datatypes/processors
Modified Files:
FormatFileSize.java package.html
ParameterizedCommitProcessorFactory.java
ParameterizedProcessorFactory.java FormatQuantity.java
Log Message:
Fixes un javadoc
See also: http://cvs.mmbase.org/viewcvs/src/org/mmbase/datatypes/processors
Index: FormatFileSize.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/datatypes/processors/FormatFileSize.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- FormatFileSize.java 3 Feb 2008 17:33:57 -0000 1.7
+++ FormatFileSize.java 25 Mar 2008 21:00:25 -0000 1.8
@@ -12,13 +12,13 @@
/**
* A processor that gets a number as a file-size, that is, rounded with kbytes
and Mb's and so on.
*
- * Actually, using setters like [EMAIL PROTECTED] #setUnit()}, this class can
also be used to postfix all
+ * Actually, using setters like [EMAIL PROTECTED]
FormatQuantity#setUnit(String)}, this class can also be used to postfix all
* other kinds of units to integers.
*
* @todo Why not apply this to floats too. Also support SI prefixes below k
then (c, m, micro, n, etc).
*
* @author Michiel Meeuwissen
- * @version $Id: FormatFileSize.java,v 1.7 2008/02/03 17:33:57 nklasens Exp $
+ * @version $Id: FormatFileSize.java,v 1.8 2008/03/25 21:00:25 nklasens Exp $
* @since MMBase-1.8
*/
@@ -33,8 +33,9 @@
/**
* It was commonplace to mix SI prefixes with 'binary' factors.
* If this is set to 'true', then SI prefixes are used 'byte' will be the
unit symbol, and 1024 the
- * basic factor (which basicly adhers to no recomendation or standard, but
is widely used by
+ * basic factor (which basically adheres to no recommendation or standard,
but is widely used by
* e.g. hard disk manufacturers).
+ * @param c classical
* @since MMBase-1.9
*/
public void setClassical(boolean c) {
Index: package.html
===================================================================
RCS file: /var/cvs/src/org/mmbase/datatypes/processors/package.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- package.html 3 Oct 2007 16:14:47 -0000 1.3
+++ package.html 25 Mar 2008 21:00:25 -0000 1.4
@@ -9,19 +9,19 @@
</p>
<p>
In this directory the framework for putting functionality there is
implemented. The basic
- agent is 'ValueIntercepter' which reads an XML and provides the set- and
get-Value
- implemntation with the specified 'Processor'.
+ agent is 'ValueIntercepter' which reads an XML and provides
the set- and get-Value
+ implemntation with the specified 'Processor'.
</p>
<p>
When functionality is added to a certain field type then a Processor
must be implemented and turned on in
datatypes.xml or the builder xml.
</p>
<p>
- Processors can be parameterized in two ways. Using a [EMAIL PROTECTED]
ParameterizedProcessorFactory} or
- [EMAIL PROTECTED] ParameterizedCommitProcessorFactory} or simply by
using bean-like setting on the instance.
- Both ways are recognized in builder xml's.
+ Processors can be parameterized in two ways. Using a [EMAIL PROTECTED]
org.mmbase.datatypes.processors.ParameterizedProcessorFactory} or
+ [EMAIL PROTECTED]
org.mmbase.datatypes.processors.ParameterizedCommitProcessorFactory} or simply
by using bean-like setting on the instance.
+ Both ways are recognized in builder xml's.
</p>
- <!-- version of package description $Id: package.html,v 1.3 2007/10/03
16:14:47 michiel Exp $
+ <!-- version of package description $Id: package.html,v 1.4 2008/03/25
21:00:25 nklasens Exp $
-->
@since MMBase-1.7
@see org.mmbase.bridge.Node
Index: ParameterizedCommitProcessorFactory.java
===================================================================
RCS file:
/var/cvs/src/org/mmbase/datatypes/processors/ParameterizedCommitProcessorFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ParameterizedCommitProcessorFactory.java 10 Dec 2005 14:33:36 -0000
1.2
+++ ParameterizedCommitProcessorFactory.java 25 Mar 2008 21:00:25 -0000
1.3
@@ -22,11 +22,14 @@
/**
* Creates a parameterized processor.
+ * @param parameters parameters for the processor
+ * @return Datatype Processor
*/
CommitProcessor createProcessor(Parameters parameters);
/**
- * Create empty <code>Parameters</code> object for use with [EMAIL
PROTECTED] #createProcessor}.
+ * Create empty <code>Parameters</code> object for use with [EMAIL
PROTECTED] #createProcessor(Parameters)}.
+ * @return Datatype Processor parameters
*/
Parameters createParameters();
Index: ParameterizedProcessorFactory.java
===================================================================
RCS file:
/var/cvs/src/org/mmbase/datatypes/processors/ParameterizedProcessorFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ParameterizedProcessorFactory.java 10 Dec 2005 14:33:36 -0000 1.2
+++ ParameterizedProcessorFactory.java 25 Mar 2008 21:00:25 -0000 1.3
@@ -22,11 +22,14 @@
/**
* Creates a parameterized processor.
+ * @param parameters parameters for the processor
+ * @return Datatype Processor
*/
Processor createProcessor(Parameters parameters);
/**
- * Create empty <code>Parameters</code> object for use with [EMAIL
PROTECTED] #createProcessor}.
+ * Create empty <code>Parameters</code> object for use with [EMAIL
PROTECTED] #createProcessor(Parameters)}.
+ * @return Datatype Processor parameters
*/
Parameters createParameters();
Index: FormatQuantity.java
===================================================================
RCS file: /var/cvs/src/org/mmbase/datatypes/processors/FormatQuantity.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- FormatQuantity.java 3 Oct 2007 16:15:27 -0000 1.1
+++ FormatQuantity.java 25 Mar 2008 21:00:25 -0000 1.2
@@ -15,13 +15,13 @@
/**
* A processor that gets a number as a file-size, that is, rounded with kbytes
and Mb's and so on.
*
- * Actually, using setters like [EMAIL PROTECTED] #setUnit()}, this class can
also be used to postfix all
+ * Actually, using setters like [EMAIL PROTECTED]
FormatQuantity#setUnit(String)}, this class can also be used to postfix all
* other kinds of units to integers.
*
* @todo Why not apply this to floats too. Also support SI prefixes below k
then (c, m, micro, n, etc).
*
* @author Michiel Meeuwissen
- * @version $Id: FormatQuantity.java,v 1.1 2007/10/03 16:15:27 michiel Exp $
+ * @version $Id: FormatQuantity.java,v 1.2 2008/03/25 21:00:25 nklasens Exp $
* @since MMBase-1.9
*/
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs