You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by ad...@apache.org on 2008/07/01 23:23:31 UTC

svn commit: r673214 - /tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java

Author: adrianocrestani
Date: Tue Jul  1 14:23:30 2008
New Revision: 673214

URL: http://svn.apache.org/viewvc?rev=673214&view=rev
Log:
-formatting ItemList2ObjectTransformer.java comment for better comprehension

Modified:
    tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java

Modified: tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java?rev=673214&r1=673213&r2=673214&view=diff
==============================================================================
--- tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java (original)
+++ tuscany/java/sca/modules/databinding-saxon/src/main/java/org/apache/tuscany/sca/databinding/saxon/ItemList2ObjectTransformer.java Tue Jul  1 14:23:30 2008
@@ -34,22 +34,22 @@
 /**
  * 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) $
  */