mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
276 B
Java
15 lines
276 B
Java
class X {
|
|
|
|
/**
|
|
* Has a method called {@link #mymethod(int, int)}.
|
|
*/
|
|
public class TestRefactorLink {
|
|
/**
|
|
* @return nothing
|
|
* @param y yparam
|
|
* @param z zparam
|
|
*/
|
|
public void <caret>mymethod(int y, int z) { }
|
|
}
|
|
}
|