34 lines
627 B
Java
34 lines
627 B
Java
package buttondevteam.lib;
|
|
|
|
import java.util.List;
|
|
|
|
public class Gary extends DebugPotato {
|
|
|
|
public Gary() {
|
|
super.setMessage("I'M A POTATO");
|
|
}
|
|
|
|
/**
|
|
* Gary has a fixed message, therefore this method has no effect.
|
|
*/
|
|
@Override
|
|
public DebugPotato setMessage(List<String> message) {
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Gary has a fixed message, therefore this method has no effect.
|
|
*/
|
|
@Override
|
|
public DebugPotato setMessage(String message) {
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Gary has a fixed message, therefore this method has no effect.
|
|
*/
|
|
@Override
|
|
public DebugPotato setMessage(String[] message) {
|
|
return this;
|
|
}
|
|
}
|