mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: e6bffe8fa019516d124b806971182aa10e79a2ec
8 lines
143 B
Java
8 lines
143 B
Java
/*<# @Debug.Renderer(text = "name") #>*/
|
|
class Person {
|
|
public final String name;
|
|
|
|
public Person(String name) {
|
|
this.name = name;
|
|
}
|
|
} |