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!
Oliver Wong - 26 Apr 2007 15:39 GMT
> Hi
>
> I have to create the following project
[snip code]
> I don't know how i can do it right. My version wasn't accepted by the
> tester.
> I hope someone can help!
Is "the tester" a human person? If so, perhaps you could ask them what
it was about your code that they found unacceptable.
If, instead, "the tester" is a piece of software, perhaps you can read
the documentation on it to find out how it determines whether code is
acceptable or not.
- Oliver