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/08/23 17:49:01 UTC

svn commit: r434099 - /incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js

Author: mturyn
Date: Wed Aug 23 10:49:00 2006
New Revision: 434099

URL: http://svn.apache.org/viewvc?rev=434099&view=rev
Log:
Added javadoc.

Modified:
    incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js

Modified: incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js?rev=434099&r1=434098&r2=434099&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/basic/AbstractBlackBoxWidgetBridge.js Wed Aug 23 10:49:00 2006
@@ -549,11 +549,21 @@
 }
 
 
-
+/**
+ * Returns a mapping of a property name to a setter instance method; the 
+ * dictionary itself is held on the class (constructor), since it should be
+ * the same for all instances.
+**/ 
 xap.bridges.basic.AbstractBlackBoxWidgetBridge.prototype._getNameToSetterMap = function(){
 	return this.constructor._nameToSetterMap ;
 }
 
+
+/**
+ * Returns a mapping of a property name to a getter instance method; the 
+ * dictionary itself is held on the class (constructor), since it should be
+ * the same for all instances.
+**/ 
 xap.bridges.basic.AbstractBlackBoxWidgetBridge.prototype._getNameToGetterMap = function(){
 	return this.constructor._nameToGetterMap ;
 }