mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 20:01:20 +07:00
GitOrigin-RevId: 12043137a28a9de984f2065c7cdca3b049e10a87
12 lines
247 B
Java
12 lines
247 B
Java
import java.util.Formatter;
|
|
|
|
public class Test {
|
|
|
|
String message;
|
|
|
|
public void run() {
|
|
<selection>Formatter formatter = new Formatter();
|
|
formatter.format("%s", this);
|
|
System.out.println(message);</selection>
|
|
}
|
|
} |