D G M S

D

data - Variable in class MyString
A private array to store the characters in the string.
DEFAULT_SIZE - Static variable in class MyString
A constant that contains the standard number of characters in a string.

G

getData() - Method in class MyString
The accessor for the character array data.
getLength() - Method in class MyString
An accessor for the variable size.

M

MyString - Class in <Unnamed>
Project #0 CS 2334, Section 010 Sep 10, 2008 This is an example class for CS 2334 that shows proper documentation.
MyString(int) - Constructor for class MyString
A constructor for an empty string of currentSize elements.

S

setData(char[]) - Method in class MyString
A mutator that changes the contents of the character array data.
setLength(int) - Method in class MyString
A mutator that sets the size of the array.
size - Variable in class MyString
The number of characters that are actually stored in the string.

D G M S