public static class

StringBuilderImpl.ImplArray

extends StringBuilderImpl
java.lang.Object
   ↳ com.google.gwt.core.client.impl.StringBuilderImpl
     ↳ com.google.gwt.core.client.impl.StringBuilderImpl.ImplArray

Class Overview

A StringBuilderImpl that uses an array and an explicit length for appending strings. Note that the length of the array is stored as a property of the underlying JavaScriptObject. Making it a field of StringBuilderImpl.ImplArray causes difficulty with inlining.

Summary

Public Constructors
StringBuilderImpl.ImplArray()
Public Methods
void append(String s)
int length()
void replace(int start, int end, String toInsert)
String toString()
[Expand]
Inherited Methods
From class com.google.gwt.core.client.impl.StringBuilderImpl
From class java.lang.Object

Public Constructors

public StringBuilderImpl.ImplArray ()

Public Methods

public void append (String s)

public int length ()

public void replace (int start, int end, String toInsert)

public String toString ()