1 2 3 4 5 6
public class GreeterImpl implements Greeter { @Override public String hello() { return "World!"; } }