package interfaces; public class TheImplementation002 implements TheInterface { public int getValue() { return 23; } public String doit() { return null; } }