Files
openide/java/java-tests/testData/refactoring/inheritanceToDelegation/overridenMethods/after/Base.java
2009-09-10 20:48:45 +04:00

12 lines
225 B
Java

public class Base implements Runnable {
void firstMethodFromBase() {
}
void secondMethodFromBase() {
}
Base getInstance() {
return null;
}
public void run() {
// do nothing
}
}