mirror of
https://github.com/moparisthebest/fernflower
synced 2024-11-29 04:22:22 -05:00
20 lines
291 B
Java
20 lines
291 B
Java
package pkg;
|
|
|
|
import java.lang.Override;
|
|
import java.lang.Runnable;
|
|
|
|
public abstract class TestAbstractMethods {
|
|
|
|
public abstract void foo();
|
|
|
|
public int test(int a) {
|
|
return a;
|
|
}
|
|
|
|
protected abstract void foo1();
|
|
|
|
public void test2(String a) {
|
|
System.out.println(a);
|
|
}
|
|
}
|