In the Client class, complete the public method definition for setName() with the string parameter customName.
public class Client {
private double height;
private int numPoints;
private String name;
public void setHeight(double customHeight) {
height = customHeight;
}
public void setNumPoints(int customNumPoints) {
numPoints = customNumPoints;
}
/* Your code goes here */ {
name = customName;
}
public double getHeight() {
return height;
}
public int getNumPoints() {
return numPoints;
}
public String getName() {
return name;
}
}