mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +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) {}
|
|
}
|