package interfaces; public class TheImplementation implements TheInterface { public int getValue() { return 35; } public String doit() { return ""; // filled in later } }