| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.core; | 5 part of dart.core; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * A class for concatenating strings efficiently. | 8 * A class for concatenating strings efficiently. |
| 9 * | 9 * |
| 10 * Allows for the incremental building of a string using write*() methods. | 10 * Allows for the incremental building of a string using write*() methods. |
| 11 * The strings are concatenated to a single string only when [toString] is | 11 * The strings are concatenated to a single string only when [toString] is |
| 12 * called. | 12 * called. |
| 13 */ | 13 */ |
| 14 class StringBuffer implements StringSink { | 14 class StringBuffer implements StringSink { |
| 15 | |
| 16 /** Creates the string buffer with an initial content. */ | 15 /** Creates the string buffer with an initial content. */ |
| 17 external StringBuffer([Object content = ""]); | 16 external StringBuffer([Object content = ""]); |
| 18 | 17 |
| 19 /** | 18 /** |
| 20 * Returns the length of the content that has been accumulated so far. | 19 * Returns the length of the content that has been accumulated so far. |
| 21 * This is a constant-time operation. | 20 * This is a constant-time operation. |
| 22 */ | 21 */ |
| 23 external int get length; | 22 external int get length; |
| 24 | 23 |
| 25 /** Returns whether the buffer is empty. This is a constant-time operation. */ | 24 /** Returns whether the buffer is empty. This is a constant-time operation. */ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 42 external void writeln([Object obj = ""]); | 41 external void writeln([Object obj = ""]); |
| 43 | 42 |
| 44 /** | 43 /** |
| 45 * Clears the string buffer. | 44 * Clears the string buffer. |
| 46 */ | 45 */ |
| 47 external void clear(); | 46 external void clear(); |
| 48 | 47 |
| 49 /// Returns the contents of buffer as a concatenated string. | 48 /// Returns the contents of buffer as a concatenated string. |
| 50 external String toString(); | 49 external String toString(); |
| 51 } | 50 } |
| OLD | NEW |