You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/07 14:58:28 UTC

[09/17] Removed unneeded @this annotations. With our implementation of classes, the compiler doesn't need this instruction.

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js b/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
index 7d44eac..bec84f5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
@@ -121,7 +121,6 @@ org.apache.flex.net.BinaryUploader.HTTP_METHOD_DELETE = 'DELETE';
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} value The data.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_data = function() {
@@ -131,7 +130,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_data = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {org.apache.flex.utils.BinaryData} value The binary Data.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_binaryData = function() {
@@ -141,7 +139,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_binaryData = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {org.apache.flex.utils.BinaryData} value The binary Data.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_binaryData = function(value) {
@@ -151,7 +148,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_binaryData = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} value The contentType.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_contentType = function() {
@@ -161,7 +157,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_contentType = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {string} value The contentType.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_contentType = function(value) {
@@ -171,7 +166,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_contentType = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_headers = function() {
@@ -185,7 +179,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_headers = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_headers = function(value) {
@@ -195,7 +188,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_headers = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} value The method.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_method = function() {
@@ -205,7 +197,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_method = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {string} value The method.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_method = function(value) {
@@ -215,7 +206,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_method = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_responseHeaders = function() {
@@ -240,7 +230,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_responseHeaders = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} value The url.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_responseURL = function() {
@@ -250,7 +239,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_responseURL = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Number} value The status.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_status = function() {
@@ -260,7 +248,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_status = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Number} value The timeout.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_timeout = function() {
@@ -270,7 +257,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_timeout = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {Number} value The timeout.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_timeout = function(value) {
@@ -280,7 +266,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_timeout = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} value The url.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_url = function() {
@@ -290,7 +275,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_url = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {string} value The url to fetch.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_url = function(value) {
@@ -300,7 +284,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_url = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  */
 org.apache.flex.net.BinaryUploader.prototype.send = function() {
   var contentData, header, i, n, sawContentType, url;
@@ -356,7 +339,6 @@ org.apache.flex.net.BinaryUploader.prototype.send = function() {
 
 /**
  * @protected
- * @this {org.apache.flex.net.BinaryUploader}
  */
 org.apache.flex.net.BinaryUploader.prototype.progressHandler = function() {
   if (this.element.readyState === 2) {
@@ -378,7 +360,6 @@ org.apache.flex.net.BinaryUploader.prototype.id;
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {string} The id.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_id = function() {
@@ -388,7 +369,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_id = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {Object} value The new id.
  */
 org.apache.flex.net.BinaryUploader.prototype.set_id = function(value) {
@@ -401,7 +381,6 @@ org.apache.flex.net.BinaryUploader.prototype.set_id = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Array} The array of descriptors.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_MXMLDescriptor = function() {
@@ -411,7 +390,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_MXMLDescriptor = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.BinaryUploader}
  * @return {Array} The array of properties.
  */
 org.apache.flex.net.BinaryUploader.prototype.get_MXMLProperties = function() {
@@ -420,7 +398,6 @@ org.apache.flex.net.BinaryUploader.prototype.get_MXMLProperties = function() {
 
 
 /**
- * @this {org.apache.flex.net.BinaryUploader}
  * @param {Object} document The MXML object.
  * @param {string} id The id for the instance.
  */

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
index e61bcb4..843bfdf 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
@@ -121,7 +121,6 @@ org.apache.flex.net.HTTPService.HTTP_METHOD_DELETE = 'DELETE';
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The data.
  */
 org.apache.flex.net.HTTPService.prototype.get_data = function() {
@@ -131,7 +130,6 @@ org.apache.flex.net.HTTPService.prototype.get_data = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The contentData.
  */
 org.apache.flex.net.HTTPService.prototype.get_contentData = function() {
@@ -141,7 +139,6 @@ org.apache.flex.net.HTTPService.prototype.get_contentData = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {string} value The contentData.
  */
 org.apache.flex.net.HTTPService.prototype.set_contentData = function(value) {
@@ -151,7 +148,6 @@ org.apache.flex.net.HTTPService.prototype.set_contentData = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The contentType.
  */
 org.apache.flex.net.HTTPService.prototype.get_contentType = function() {
@@ -161,7 +157,6 @@ org.apache.flex.net.HTTPService.prototype.get_contentType = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {string} value The contentType.
  */
 org.apache.flex.net.HTTPService.prototype.set_contentType = function(value) {
@@ -171,7 +166,6 @@ org.apache.flex.net.HTTPService.prototype.set_contentType = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.HTTPService.prototype.get_headers = function() {
@@ -185,7 +179,6 @@ org.apache.flex.net.HTTPService.prototype.get_headers = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.HTTPService.prototype.set_headers = function(value) {
@@ -195,7 +188,6 @@ org.apache.flex.net.HTTPService.prototype.set_headers = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The method.
  */
 org.apache.flex.net.HTTPService.prototype.get_method = function() {
@@ -205,7 +197,6 @@ org.apache.flex.net.HTTPService.prototype.get_method = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {string} value The method.
  */
 org.apache.flex.net.HTTPService.prototype.set_method = function(value) {
@@ -215,7 +206,6 @@ org.apache.flex.net.HTTPService.prototype.set_method = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Array} value The array of HTTPHeaders.
  */
 org.apache.flex.net.HTTPService.prototype.get_responseHeaders = function() {
@@ -240,7 +230,6 @@ org.apache.flex.net.HTTPService.prototype.get_responseHeaders = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The url.
  */
 org.apache.flex.net.HTTPService.prototype.get_responseURL = function() {
@@ -250,7 +239,6 @@ org.apache.flex.net.HTTPService.prototype.get_responseURL = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Number} value The status.
  */
 org.apache.flex.net.HTTPService.prototype.get_status = function() {
@@ -260,7 +248,6 @@ org.apache.flex.net.HTTPService.prototype.get_status = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Number} value The timeout.
  */
 org.apache.flex.net.HTTPService.prototype.get_timeout = function() {
@@ -270,7 +257,6 @@ org.apache.flex.net.HTTPService.prototype.get_timeout = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {Number} value The timeout.
  */
 org.apache.flex.net.HTTPService.prototype.set_timeout = function(value) {
@@ -280,7 +266,6 @@ org.apache.flex.net.HTTPService.prototype.set_timeout = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} value The url.
  */
 org.apache.flex.net.HTTPService.prototype.get_url = function() {
@@ -290,7 +275,6 @@ org.apache.flex.net.HTTPService.prototype.get_url = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {string} value The url to fetch.
  */
 org.apache.flex.net.HTTPService.prototype.set_url = function(value) {
@@ -300,7 +284,6 @@ org.apache.flex.net.HTTPService.prototype.set_url = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  */
 org.apache.flex.net.HTTPService.prototype.send = function() {
   var contentData, header, i, n, sawContentType, url;
@@ -356,7 +339,6 @@ org.apache.flex.net.HTTPService.prototype.send = function() {
 
 /**
  * @protected
- * @this {org.apache.flex.net.HTTPService}
  */
 org.apache.flex.net.HTTPService.prototype.progressHandler = function() {
   if (this.element.readyState === 2) {
@@ -378,7 +360,6 @@ org.apache.flex.net.HTTPService.prototype.id;
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {string} The id.
  */
 org.apache.flex.net.HTTPService.prototype.get_id = function() {
@@ -388,7 +369,6 @@ org.apache.flex.net.HTTPService.prototype.get_id = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @param {Object} value The new id.
  */
 org.apache.flex.net.HTTPService.prototype.set_id = function(value) {
@@ -401,7 +381,6 @@ org.apache.flex.net.HTTPService.prototype.set_id = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Array} The array of descriptors.
  */
 org.apache.flex.net.HTTPService.prototype.get_MXMLDescriptor = function() {
@@ -411,7 +390,6 @@ org.apache.flex.net.HTTPService.prototype.get_MXMLDescriptor = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.HTTPService}
  * @return {Array} The array of properties.
  */
 org.apache.flex.net.HTTPService.prototype.get_MXMLProperties = function() {
@@ -420,7 +398,6 @@ org.apache.flex.net.HTTPService.prototype.get_MXMLProperties = function() {
 
 
 /**
- * @this {org.apache.flex.net.HTTPService}
  * @param {Object} document The MXML object.
  * @param {string} id The id for the instance.
  */

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
index 16f7683..dc65fa0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
@@ -25,7 +25,6 @@ org.apache.flex.net.JSONInputParser = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.JSONInputParser}
  * @param {string} s The input string.
  * @return {Array.<String>} The Array of unparsed objects.
  */

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
index c5b2dde..36b42fa 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
@@ -25,7 +25,6 @@ org.apache.flex.net.JSONItemConverter = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.JSONItemConverter}
  * @param {string} s The input string.
  * @return {Object} The object.
  */

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
index 3a8cd4d..1029a14 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
@@ -55,7 +55,6 @@ org.apache.flex.net.dataConverters.LazyCollection = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @return {string} value The input parser.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.get_inputParser =
@@ -66,7 +65,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_inputParser =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @param {string} value The input parser.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.set_inputParser =
@@ -77,7 +75,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_inputParser =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @return {string} value The input parser.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.get_itemConverter =
@@ -88,7 +85,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_itemConverter =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @param {string} value The input parser.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.set_itemConverter =
@@ -106,7 +102,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.id = null;
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @return {string} The id.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.get_id =
@@ -117,7 +112,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_id =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @param {Object} value The new id.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.set_id =
@@ -131,7 +125,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_id =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @param {Object} value The new host.
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.set_strand =
@@ -146,7 +139,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_strand =
 
 /**
  * @protected
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  */
 org.apache.flex.net.dataConverters.LazyCollection.prototype.completeHandler =
     function() {
@@ -158,7 +150,6 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.completeHandler =
 
 /**
  * @expose
- * @this {org.apache.flex.net.dataConverters.LazyCollection}
  * @param {number} index The index in the collection.
  * @return {Object} An item in the collection.
  */

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/svg/staticControls/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/svg/staticControls/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/svg/staticControls/TextButton.js
index 4c7bba6..fbd4d34 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/svg/staticControls/TextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/svg/staticControls/TextButton.js
@@ -32,7 +32,6 @@ goog.inherits(
 
 /**
  * @override
- * @this {org.apache.flex.svg.staticControls.TextButton}
  * @param {Object} p The parent element.
  */
 org.apache.flex.svg.staticControls.TextButton.prototype.addToParent =
@@ -49,7 +48,6 @@ org.apache.flex.svg.staticControls.TextButton.prototype.addToParent =
 
 /**
  * @expose
- * @this {org.apache.flex.svg.staticControls.TextButton}
  * @return {string} The text getter.
  */
 org.apache.flex.svg.staticControls.TextButton.prototype.get_text = function() {
@@ -59,7 +57,6 @@ org.apache.flex.svg.staticControls.TextButton.prototype.get_text = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.svg.staticControls.TextButton}
  * @param {string} value The text setter.
  */
 org.apache.flex.svg.staticControls.TextButton.prototype.set_text =

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
index 3db1c26..045b051 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
@@ -38,7 +38,6 @@ org.apache.flex.utils.BinaryData = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {Object} The platform-specific data.
  */
 org.apache.flex.utils.BinaryData.prototype.get_data = function() {
@@ -48,7 +47,6 @@ org.apache.flex.utils.BinaryData.prototype.get_data = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} b The byte to write.
  */
 org.apache.flex.utils.BinaryData.prototype.writeByte = function(b) {
@@ -64,7 +62,6 @@ org.apache.flex.utils.BinaryData.prototype.writeByte = function(b) {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} s The 16-bit integer to write.
  */
 org.apache.flex.utils.BinaryData.prototype.writeShort = function(s) {
@@ -80,7 +77,6 @@ org.apache.flex.utils.BinaryData.prototype.writeShort = function(s) {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} num The 32-bit integer to write.
  */
 org.apache.flex.utils.BinaryData.prototype.writeInt = function(num) {
@@ -96,7 +92,6 @@ org.apache.flex.utils.BinaryData.prototype.writeInt = function(num) {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} num The 32-bit unsigned integer to write.
  */
 org.apache.flex.utils.BinaryData.prototype.writeUnsignedInt =
@@ -113,7 +108,6 @@ org.apache.flex.utils.BinaryData.prototype.writeUnsignedInt =
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The byte that was read.
  */
 org.apache.flex.utils.BinaryData.prototype.readByte = function() {
@@ -127,7 +121,6 @@ org.apache.flex.utils.BinaryData.prototype.readByte = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The 16-bit integer that was read.
  */
 org.apache.flex.utils.BinaryData.prototype.readShort = function() {
@@ -141,7 +134,6 @@ org.apache.flex.utils.BinaryData.prototype.readShort = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The 32-bit integer that was read.
  */
 org.apache.flex.utils.BinaryData.prototype.readInteger = function() {
@@ -155,7 +147,6 @@ org.apache.flex.utils.BinaryData.prototype.readInteger = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The 32-bit unsigned integer that was read.
  */
 org.apache.flex.utils.BinaryData.prototype.readUnsignedInteger =
@@ -170,7 +161,6 @@ org.apache.flex.utils.BinaryData.prototype.readUnsignedInteger =
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The offset to write to or read from.
  */
 org.apache.flex.utils.BinaryData.prototype.get_position = function() {
@@ -180,7 +170,6 @@ org.apache.flex.utils.BinaryData.prototype.get_position = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} value The offset to write to or read from.
  */
 org.apache.flex.utils.BinaryData.prototype.set_position = function(value) {
@@ -190,7 +179,6 @@ org.apache.flex.utils.BinaryData.prototype.set_position = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The offset to write to or read from.
  */
 org.apache.flex.utils.BinaryData.prototype.get_length = function() {
@@ -200,7 +188,6 @@ org.apache.flex.utils.BinaryData.prototype.get_length = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @return {number} The number of bytes that can still be read.
  */
 org.apache.flex.utils.BinaryData.prototype.get_bytesAvailable = function() {
@@ -210,7 +197,6 @@ org.apache.flex.utils.BinaryData.prototype.get_bytesAvailable = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.BinaryData}
  * @param {number} extra The number of bytes to add to the buffer.
  */
 org.apache.flex.utils.BinaryData.prototype.growBuffer = function(extra) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
index ad4968e..47801f6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
@@ -55,7 +55,6 @@ goog.inherits(org.apache.flex.utils.Timer,
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * Stops the timer and sets currentCount = 0.
  */
 org.apache.flex.utils.Timer.prototype.reset = function() {
@@ -66,7 +65,6 @@ org.apache.flex.utils.Timer.prototype.reset = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * Stops the timer.
  */
 org.apache.flex.utils.Timer.prototype.stop = function() {
@@ -77,7 +75,6 @@ org.apache.flex.utils.Timer.prototype.stop = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * Starts the timer.
  */
 org.apache.flex.utils.Timer.prototype.start = function() {
@@ -88,7 +85,6 @@ org.apache.flex.utils.Timer.prototype.start = function() {
 
 /**
  * @protected
- * @this {org.apache.flex.utils.Timer}
  */
 org.apache.flex.utils.Timer.prototype.timerHandler =
     function() {
@@ -104,7 +100,6 @@ org.apache.flex.utils.Timer.prototype.timerHandler =
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @return {Number} The currentCount.
  */
 org.apache.flex.utils.Timer.prototype.get_currentCount = function() {
@@ -114,7 +109,6 @@ org.apache.flex.utils.Timer.prototype.get_currentCount = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @return {boolean} True if the timer is running.
  */
 org.apache.flex.utils.Timer.prototype.get_running = function() {
@@ -124,7 +118,6 @@ org.apache.flex.utils.Timer.prototype.get_running = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @return {Number} The number of milliseconds between events.
  */
 org.apache.flex.utils.Timer.prototype.get_delay = function() {
@@ -134,7 +127,6 @@ org.apache.flex.utils.Timer.prototype.get_delay = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @param {Number} value The number of milliseconds between events.
  */
 org.apache.flex.utils.Timer.prototype.set_delay = function(value) {
@@ -144,7 +136,6 @@ org.apache.flex.utils.Timer.prototype.set_delay = function(value) {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @return {Number} The repeat count.
  */
 org.apache.flex.utils.Timer.prototype.get_repeatCount = function() {
@@ -154,7 +145,6 @@ org.apache.flex.utils.Timer.prototype.get_repeatCount = function() {
 
 /**
  * @expose
- * @this {org.apache.flex.utils.Timer}
  * @param {Number} value The repeat count.
  */
 org.apache.flex.utils.Timer.prototype.set_repeatCount = function(value) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/058b50ee/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
index 92a3b77..7e2ada0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
@@ -26,7 +26,6 @@ org.apache.flex.utils.ViewSourceContextMenuOption = function() {
 
 
 /**
- * @this {org.apache.flex.utils.ViewSourceContextMenuOption}
  * @param {object} value The strand (owner) of the bead.
  */
 org.apache.flex.utils.ViewSourceContextMenuOption.prototype.set_strand =