
class C implements MyInterface, MyOtherInterface {

    // Method in MyInterface

    public void boo() {
        System.out.println("boo");
    }

    // A class can override a method in an interface that has a default implementation
    // We do not need @Override

	public void foo() {
		System.out.println("foo");
	}

    // Method in MyOtherInterface

	public void box() {
		System.out.println("me box");
	}
}
