I need help with this codehs lab in the screenshot below. Status: Not Submitted 5.4.5: Text Messages Getter M... Save Submit + Continue RUN CODE TEST CASES ASSIGNMENT DOCS |GRADE MORE M 1 public class TextMessage 2- { 5 points Status: Not Submitted private String message; FILES private String sender; The TextMessage class was created to save text messages. Currently, the OUTA WN private String receiver; class has a constructor and a toString. 7 Messages.java public TextMessage(String from, String to, String theMess Continue adding to this class by adding three accessor methods: 8 + TextMessage.java 9 sender = from; public String getSender() 10 receiver = to; public String getReceiver() 11 message = theMessage; public String getMessage() 12 13 14 public String toString() 15 - 16 return sender + " texted " + receiver + " . + messag 17 18 } 19 Status: Not Submitted 5.4.5: Text Messages Getter M... Save Submit + Continue RUN CODE TEST CASES ASSIGNMENT DOCS GRADE MORE 1 public class Messages 2 - { 5 points Status: Not Submitted 3 public static void main(String args) FILES The TextMessage class was created to save text messages. Currently, the 5 // Your code here. class has a constructor and a toString. 6 // Create two TextMessage objects and print them out. 3 Continue adding to this class by adding three accessor methods: Messages.java TextMessage.java public String getSender() public String getReceiver() public String getMessage() <

Answer :

Other Questions