mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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>
|
|
}
|
|
} |