Question: Define the Message class's getGreeting ( ) accessor that gets field greeting and the getNumber ( ) accessor that gets field number: Ex: If the

Define the Message class's getGreeting() accessor that gets field greeting and the getNumber() accessor that gets field number: Ex: If the input is:
Cam
893-491-2100
then the output is:
Message: Please leave a message for Cam
Phone Number: 893-491-2100
public class Message {
private String greeting;
private string number;
public void setGreeting(String inputGreeting){
}
greeting = "Please leave a message for "+ inputGreeting;
public void setNumber(String inputNumber){
number = inputNumber;
}
y= Your code goes here "/
 Define the Message class's getGreeting() accessor that gets field greeting and

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 Databases Questions!