Hi
I have to create the following project
public class Messanger {
publicMessanger () {
// TODO implement constructor
}
public String getBye() {
// TODO implement method
return null;
}
public String getHello() {
// TODO implement method
return null;
}
public String getName() {
// TODO implement method
return null;
}
public void sayBye() {
// TODO implement method
}
public void sayHello() {
// TODO implement method
}
public void setName() {
// TODO implement method
}
}
My suggestion is this version:
public class Messanger {
private String name;
private String bye;
private String hello;
public Messanger (String newName, String newHello, String newBye)
{
// TODO implement constructor
name = newName;
bye = newBye;
hello = newHello;
}
public String getBye() {
// TODO implement method
return bye;
}
public String getHello() {
// TODO implement method
return hello;
}
public String getName() {
// TODO implement method
return name;
}
public void sayBye() {
// TODO implement method
System.out.println (bye + "!");
}
public void sayHello() {
// TODO implement method
System.out.println (hello + (" ") + name + ("!"));
}
public void setName(String newName) {
// TODO implement method
name = newName;
}
}
I don't know how i can do it right. My version wasn't accepted by the
tester.
I hope someone can help!
Eric Sosman - 26 Apr 2007 19:08 GMT
FopZ wrote On 04/26/07 04:55,:
> Hi
>
[quoted text clipped - 5 lines]
> tester.
> I hope someone can help!
We can't tell you how to "do it right" until you reveal
what "it" is, that is, what the class and its methods are
supposed to do. And did the tester give any reason for
rejection, or did it just say "Bzzzt!"?

Signature
Eric.Sosman@sun.com