Create a New Textline object copying the state of the existing object into the new one. The state of the class is the color, font, and justification ie everything but the string.
()
| 274 | * font, and justification ie everything but the string. |
| 275 | */ |
| 276 | public TextLine copyState() { |
| 277 | return new TextLine(font, color, justification); |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * Copy the state of the parsed Textline into the existing |