You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/10/18 16:46:07 UTC

svn commit: r1399681 - /incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as

Author: cframpton
Date: Thu Oct 18 14:46:06 2012
New Revision: 1399681

URL: http://svn.apache.org/viewvc?rev=1399681&view=rev
Log:
FLEX-3221.  Improve doc on the length param for encode() and encodeBytes().

Modified:
    incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as?rev=1399681&r1=1399680&r2=1399681&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/utils/Base64Encoder.as Thu Oct 18 14:46:06 2012
@@ -136,7 +136,8 @@ public class Base64Encoder
      * 
      * @param data The String to encode.
      * @param offset The character position from which to start encoding.
-     * @param length The number of characters to encode from the offset.
+     * @param length The number of characters to encode from the offset, or
+     * all the characters if the length is 0.
      *  
      *  @langversion 3.0
      *  @playerversion Flash 9
@@ -201,7 +202,8 @@ public class Base64Encoder
      * 
      * @param data The ByteArray to encode.
      * @param offset The index from which to start encoding.
-     * @param length The number of bytes to encode from the offset.
+     * @param length The number of bytes to encode from the offset, or all
+     * the bytes if the length is 0.
      *  
      *  @langversion 3.0
      *  @playerversion Flash 9