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/07/18 17:35:18 UTC

svn commit: r423145 - /incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js

Author: mturyn
Date: Tue Jul 18 10:35:17 2006
New Revision: 423145

URL: http://svn.apache.org/viewvc?rev=423145&view=rev
Log:
A few random classes needed further rescoping.

Modified:
    incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js

Modified: incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js?rev=423145&r1=423144&r2=423145&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js Tue Jul 18 10:35:17 2006
@@ -26,10 +26,10 @@
  
  
  /**
- * Creates a DojoWidgetBridge.
+ * Creates a xap.bridges.dojo.DojoWidgetBridge.
  * 
  * 
- * @class DojoWidgetBridge is the bridge between an XML element
+ * @class xap.bridges.dojo.DojoWidgetBridge is the bridge between an XML element
  * representing a control and a subclass of DojoWidget. This class 
  * is typically not used directly but is extended by other classes 
  * for its subclasses.
@@ -45,7 +45,7 @@
 
 xap.bridges.dojo.DojoWidgetBridge.prototype.constructor = xap.bridges.dojo.DojoWidgetBridge ;
 
-xap.bridges.dojo.DojoWidgetBridge.s_log = xap.util.LogFactory.getLog( "DojoWidgetBridge" );
+xap.bridges.dojo.DojoWidgetBridge.s_log = xap.util.LogFactory.getLog( "xap.bridges.dojo.DojoWidgetBridge" );
 
 
 xap.bridges.dojo.DojoWidgetBridge.prototype.toString = function() {
@@ -160,7 +160,7 @@
 
 		if (dojoType == null ){
 		// Make this a xap.util.XapException once we're stable:
-			throw new Exception("No dojo type specified by class or passed-in map.") ;		
+			throw new xap.util.Exception("No dojo type specified by class or passed-in map.") ;		
    		}
    
    		// The candy in the middle of the wrapper:
@@ -180,7 +180,7 @@
 /**
  * This method is called whenever an attribute
  * on the XML element that maps to this bridge class
- * is changed. DojoWidgetBridge handles the following attributes:
+ * is changed. xap.bridges.dojo.DojoWidgetBridge handles the following attributes:
  * <ul>
  * <li>x - the x location</li>
  * <li>y - the y location</li>