summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/databinding-saxon/src
diff options
context:
space:
mode:
authoradrianocrestani <adrianocrestani@13f79535-47bb-0310-9956-ffa450edef68>2008-07-01 21:23:30 +0000
committeradrianocrestani <adrianocrestani@13f79535-47bb-0310-9956-ffa450edef68>2008-07-01 21:23:30 +0000
commit87587fff7597e82d1ff7ac1fa93b5eb1cd185208 (patch)
tree9f88a89cb421f7b65ab4e552db46d922f3959bcd /java/sca/modules/databinding-saxon/src
parent874021b2ab5c5604e9c424150d6ccfd5c0852ce1 (diff)
-formatting ItemList2ObjectTransformer.java comment for better comprehension
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@673214 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/databinding-saxon/src')
-rw-r--r--java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java b/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java
index d8f79e4c33..5f7c7ed858 100644
--- a/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java
+++ b/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java
@@ -34,22 +34,22 @@ import org.apache.tuscany.sca.databinding.saxon.collection.ItemList;
/**
* Transforms each object contained in the ItemList object.
*
- * If the object type is the same as the target type, it is not transformed.
+ * If the object type is the same as the target type, it is not transformed.
*
- * If the object is a NodeInfo, it's transformed to a DataObject.
+ * If the object is a NodeInfo, it's transformed to a DataObject.
*
- * If the object is a Value, it's transformed to a Java object.
+ * If the object is a Value, it's transformed to a Java object.
*
* If the target type is not an array, the first transformed object is returned.
*
- * If the first transformed object type is not a target type, then a
- * TransformException is thrown
+ * If the first transformed object type is not a target type, then a
+ * TransformException is thrown
*
* If the target type is an array, a array of this type is created containing
* all transformed objects and it is returned
*
- * If any transformed object is not a target type, then a TransformException is
- * thrown
+ * If any transformed object is not a target type, then a TransformException is
+ * thrown
*
* @version $Rev: 659284 $ $Date: 2008-05-22 14:26:18 -0800 (Thu, 22 May 2008) $
*/