mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 10:34:25 +07:00
11 lines
198 B
Java
11 lines
198 B
Java
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: db
|
|
* Date: 21.09.11
|
|
* Time: 23:55
|
|
* To change this template use File | Settings | File Templates.
|
|
*/
|
|
public abstract class A {
|
|
abstract int f ();
|
|
}
|