mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
27 lines
405 B
Java
27 lines
405 B
Java
class Test {
|
|
/**
|
|
* foo comment
|
|
* @param param
|
|
*/
|
|
void foo(Param param) {
|
|
bar(param.getS());
|
|
}
|
|
|
|
void bar(String s){}
|
|
|
|
private static class Param {
|
|
private final String s;
|
|
|
|
/**
|
|
* @param s long description
|
|
*/
|
|
private Param(String s) {
|
|
this.s = s;
|
|
}
|
|
|
|
public String getS() {
|
|
return s;
|
|
}
|
|
}
|
|
}
|