Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
android_art
/
cbba6ac9bf9a6c630a7aafae6d8767b5ddbb6fd5
/
.
/
test
/
AbstractMethod
/
AbstractMethod.java
blob: f40e9a998884f819f9218b1f00a52803c3378436 [
file
] [
log
] [
blame
]
// Copyright 2011 Google Inc. All Rights Reserved.
abstract
class
AbstractMethod
{
abstract
void
callme
();
public
AbstractMethod
()
{
}
}
class
B
extends
AbstractMethod
{
void
callme
()
{
System
.
out
.
println
(
"B's implementation of callme"
);
}
}