|
From: <jrb...@us...> - 2011-11-21 18:02:40
|
Revision: 1250
http://cishell.svn.sourceforge.net/cishell/?rev=1250&view=rev
Author: jrbibers
Date: 2011-11-21 18:02:33 +0000 (Mon, 21 Nov 2011)
Log Message:
-----------
Punctuation in Javadoc.
Modified Paths:
--------------
trunk/core/org.cishell.utilities/src/org/cishell/utilities/DataFactory.java
Modified: trunk/core/org.cishell.utilities/src/org/cishell/utilities/DataFactory.java
===================================================================
--- trunk/core/org.cishell.utilities/src/org/cishell/utilities/DataFactory.java 2011-11-21 17:59:11 UTC (rev 1249)
+++ trunk/core/org.cishell.utilities/src/org/cishell/utilities/DataFactory.java 2011-11-21 18:02:33 UTC (rev 1250)
@@ -18,7 +18,7 @@
*
* @param datum Object to wrap
* @param format The {@link Data#getFormat() format} of {@code object}
- * @param type The {@link DataProperty#TYPE type} of {@code object}
+ * @param type The {@link DataProperty#TYPE type} of {@code object}.
* See {@link DataProperty}.*_TYPE for possible values
* @param parent The {@link Data} from which {@code object} was derived
* @param label A concise String describing {@code object} in relation to {@code parent}
@@ -35,11 +35,11 @@
* Creates a Data wrapping {@code object} having the same {@link Data#getFormat() format} and
* {@link DataProperty#TYPE type} as its {@code parent}.
*
- * @param object Object to wrap
- * @param parent The {@link Data} from which {@code object} was derived
- * @param label A concise String describing {@code object} in relation to {@code parent}
+ * @param object Object to wrap.
+ * @param parent The {@link Data} from which {@code object} was derived.
+ * @param label A concise String describing {@code object} in relation to {@code parent}.
* @return A Data wrapping {@code object} using {@code parent}'s {@code format}
- * and {@code type}
+ * and {@code type}.
*/
public static Data likeParent(Object object, Data parent, String label) {
return forObject(
@@ -53,13 +53,13 @@
* Creates a Data wrapping {@code object} using {@code object.getClass().getName()} as its
* format.
*
- * @param object Object to wrap as Data
- * @param type The {@link DataProperty#TYPE type} of {@code object}
- * See {@link DataProperty}.*_TYPE for possible values
- * @param parent The {@link Data} from which {@code object} was derived
- * @param label A concise String describing {@code object} in relation to {@code parent}
+ * @param object Object to wrap as Data.
+ * @param type The {@link DataProperty#TYPE type} of {@code object}.
+ * See {@link DataProperty}.*_TYPE for possible values.
+ * @param parent The {@link Data} from which {@code object} was derived.
+ * @param label A concise String describing {@code object} in relation to {@code parent}.
* @return A Data wrapping {@code object} using {@code object.getClass().getName()} as its
- * format
+ * format.
*/
public static Data withClassNameAsFormat(
Object object, String type, Data parent, String label) {
@@ -68,13 +68,13 @@
/**
* Creates a Data wrapping {@code file} using {@code mimeType} as its format.
*
- * @param file File to wrap as Data
+ * @param file File to wrap as Data.
* @param mimeType {@code file}'s MIME type, e.g. "file:text/plain".
- * @param type The {@link DataProperty#TYPE type} of {@code object}
- * See {@link DataProperty}.*_TYPE for possible values
- * @param parent The {@link Data} from which {@code object} was derived
- * @param label A concise String describing {@code object} in relation to {@code parent}
- * @return A Data wrapping {@code file} using {@code mimeType} as its format
+ * @param type The {@link DataProperty#TYPE type} of {@code object}.
+ * See {@link DataProperty}.*_TYPE for possible values.
+ * @param parent The {@link Data} from which {@code object} was derived.
+ * @param label A concise String describing {@code object} in relation to {@code parent}.
+ * @return A Data wrapping {@code file} using {@code mimeType} as its format.
*/
public static Data forFile(
File file, String mimeType, String type, Data parent, String label) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|