This document contains code for a Java class that defines several string manipulation methods. The methods include:
1. donuts() which returns a message based on the number of donuts passed in
2. both_ends() which returns the first two and last two characters of a string
3. fix_start() which replaces all instances of the first character with asterisks except the first one
4. mixUp() which switches the first two characters of two input strings
5. verbing() which adds 'ing' to verbs shorter than 3 letters or changes verbs to their 'ly' adjectives.
The main() method tests each method by passing sample inputs and comparing the outputs to expected results