mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
12 lines
239 B
Java
12 lines
239 B
Java
class C{
|
|
/**
|
|
* @see #perform(int, String) <caret>
|
|
*/
|
|
private int myField;
|
|
|
|
public void perform() {}
|
|
public void perform(int a) {}
|
|
public void perform(int a, String b) {}
|
|
public void perform(String b) {}
|
|
}
|