Interface StringBuilder
access this type via: data.StringBuilder (provides, requires or uses)
This is a simple utility interface to help build a string in multiple parts.
Transfer fields
char builderContent[]
Functions
void add(char str[])
char[] get()
Transfer fields
builderContent The current contents of the string builder.
void add(char str[])
Add a new string to the end of the current string.
str The string to be appended.
char[] get()
Get the total string constructed so far, as a single character array.
returns: The string constructed so far.