Q:

CONVERT SIMPLE customer UML CLASS DIAGRAM TO JAVA CODE

0

covert the following uml Customer class diagram to java programming language code:

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class Customer {
    
 private String name;
 private String address;
 private String phone;
 
public Customer(){
}
public void setName(String n){
}
public void setAddress(String a) {
 }
public void setPhone(String p){
}
public String getName  (){
    return name;
}
public String getAddress  (){
    return address;
}
public String getPhone  () {
    return phone;
} 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

covert the following uml Car class diagram to java... >>