mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 14:00:54 +07:00
preview for cases GitOrigin-RevId: ce5076da1b9f5fef4461a2a4010659f4c6b8c78d
11 lines
235 B
Java
11 lines
235 B
Java
class App {
|
|
void setName(String name) { }
|
|
|
|
void sendMessage(String message) { }
|
|
|
|
public static void main(String[] args) {
|
|
App app = new App();
|
|
app.setName("My app");
|
|
app.sendMessage("Hello");
|
|
}
|
|
} |