codehs 2.8.6 public class Talker { private String text; // Constructor public Talker(String startingText) { text = startingText; } // Returns the text in all uppercase letters codehs 2.8.6 How to get it for free? codehs 2.8.6 // Find a method in the JavaDocs that // will allow you to do this with just // one method call public String yell() { String sub = text.toUpperCase(); return sub; } codehs 2.8.6 How to get it for free? codehs 2.8.6 // Returns the text in all lowercase letters // Find a method in the JavaDocs that // will allow you to do this with just // one method call public String whisper() { String sub = text.toLowerCase(); return sub; } codehs 2.8.6 How to use it? codehs 2.8.6 // Reset the instance variable to the new text public void setText(String newText) { text = newText; System.out.println(text); } // Returns a String representatin of this object // The returned String should look like // codehs 2.8.6 PasteShr codehs 2.8.6 // I say, "text" // // The quotes should appear in the String // text should be the value of the instance variable public String toString() { return "I say, \""+text+"\""; } } codehs 2.8.6