mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
15 lines
483 B
Java
15 lines
483 B
Java
public interface A {
|
|
void foo(String p1, String p2,String p3,String p4,String p5,String p6,String p7);
|
|
}
|
|
|
|
abstract class B implements A{
|
|
public void foo(String p1,
|
|
String p2,
|
|
String p3,
|
|
String p4,
|
|
String p5,
|
|
String p6,
|
|
String p7) {
|
|
<caret><selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |