Question: Submit your java source files and screenshots of your program operations. Please fully complete this and have this project fully functional. The project prompt is

Submit your java source files and screenshots of your program operations. Please fully complete this and have this project fully functional. The project prompt is below.
Message.java:
import java.io.Serializable;
public class Message implements Serializable {
protected String type;
protected String status;
protected String text;
public Message(){
this.type = "Undefined";
this.status = "Undefined";
this.text = "Undefined";
}
public Message(String type, String status, String text){
this.type = setType(type);
this.status = setStatus(status);
this.text = setText(text);
}
private void setType(String type){
}
private void setStatus(String status){
}
private void setText(String text){
}
public String getType(){
}
public String getStatus(){
}
public String getText(){
}
}
Submit your java source files and screenshots of

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!