blob: 45d37c5b1f902b7239d5dee3e3c377b84b1b198b [file] [log] [blame]
public class Base implements Runnable {
void firstMethodFromBase() {
}
void secondMethodFromBase() {
}
Base getInstance() {
return null;
}
public void run() {
// do nothing
}
}