blob: f40e9a998884f819f9218b1f00a52803c3378436 [file] [log] [blame]
Shih-wei Liao303b01e2011-09-14 00:46:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3abstract class AbstractMethod {
4 abstract void callme();
5
6 public AbstractMethod() {
7 }
8}
9
10class B extends AbstractMethod {
11 void callme() {
12 System.out.println("B's implementation of callme");
13 }
14}