You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/09/25 02:48:13 UTC

svn commit: r449551 - in /incubator/xap/trunk/src/xap/taghandling: AttributeConversionException.js AttributeConverter.js

Author: mturyn
Date: Sun Sep 24 19:48:13 2006
New Revision: 449551

URL: http://svn.apache.org/viewvc?view=rev&rev=449551
Log:
Updated for first binding work.

Added:
    incubator/xap/trunk/src/xap/taghandling/AttributeConversionException.js
      - copied, changed from r449318, incubator/xap/trunk/src/xap/taghandling/AttributeConversionException
Modified:
    incubator/xap/trunk/src/xap/taghandling/AttributeConverter.js

Copied: incubator/xap/trunk/src/xap/taghandling/AttributeConversionException.js (from r449318, incubator/xap/trunk/src/xap/taghandling/AttributeConversionException)
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/AttributeConversionException.js?view=diff&rev=449551&p1=incubator/xap/trunk/src/xap/taghandling/AttributeConversionException&r1=449318&p2=incubator/xap/trunk/src/xap/taghandling/AttributeConversionException.js&r2=449551
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/AttributeConversionException (original)
+++ incubator/xap/trunk/src/xap/taghandling/AttributeConversionException.js Sun Sep 24 19:48:13 2006
@@ -13,16 +13,12 @@
  *  See the License for the specific language governing permissions and
  *  limitations under the License.
  *
-**/
-
-
-Xap.provide("xap.taghandling.AttributeConversionException");
-Xap.require("xap.util.Exception") ;
-
-
+**/
+Xap.provide("xap.taghandling.AttributeConversionException");
+Xap.require("xap.util.Exception");
 /**
  * An exception for reporting problems with the formatting of attributes
- * on elements.
+ * on elements. 
  * 
  * @author James Margaris
  * @param attribute{String}
@@ -30,17 +26,10 @@
  * @param rootException{Exception}
  *
  *
- */
-xap.taghandling.AttributeConversionException = function(attribute,dataType,rootException){
-		xap.util.Exception.call(
-					this,
-					xap.taghandling.AttributeConversionException.COULD_NOT_CONVERT, 
-					[attribute,dataType],
-					rootException
-					);	
-}
-
-		/*private static final String*/
-	xap.taghandling.AttributeConversionExceptionCOULD_NOT_CONVERT="couldNotConvert";
-	
-}
\ No newline at end of file
+ */
+xap.taghandling.AttributeConversionException = function(attribute, dataType, rootException){
+	xap.util.Exception.call(this, xap.taghandling.AttributeConversionException.COULD_NOT_CONVERT, [attribute, dataType], rootException);
+};
+/*private static final String*/
+xap.taghandling.AttributeConversionException.COULD_NOT_CONVERT = "couldNotConvert";
+

Modified: incubator/xap/trunk/src/xap/taghandling/AttributeConverter.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/AttributeConverter.js?view=diff&rev=449551&r1=449550&r2=449551
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/AttributeConverter.js (original)
+++ incubator/xap/trunk/src/xap/taghandling/AttributeConverter.js Sun Sep 24 19:48:13 2006
@@ -13,7 +13,10 @@
  *  See the License for the specific language governing permissions and
  *  limitations under the License.
  *
-**/
+**/
+
+Xap.provide("xap.taghandling.AttributeConverter") ;
+
 Xap.require("xap.session.ClientSession");
 //Xap.require("xap.XmlTokens") ;
 //Xap.require("xap.bridges.GradientBridge") ;