- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file Messages.java.
◆ add() [1/4]
Messages org.turro.elephant.util.Messages.add |
( |
String |
value, |
|
|
String |
enclose, |
|
|
boolean |
withSpace |
|
) |
| |
Definition at line 65 of file Messages.java.
66 phrases.add(value, enclose, withSpace);
◆ add() [2/4]
Messages org.turro.elephant.util.Messages.add |
( |
String |
word | ) |
|
◆ add() [3/4]
Messages org.turro.elephant.util.Messages.add |
( |
String |
word, |
|
|
boolean |
withSpace |
|
) |
| |
Definition at line 55 of file Messages.java.
56 phrases.add(word, withSpace);
◆ add() [4/4]
Messages org.turro.elephant.util.Messages.add |
( |
String |
word, |
|
|
String |
enclose |
|
) |
| |
Definition at line 60 of file Messages.java.
61 phrases.add(word, enclose);
◆ confirmAcceptation()
static Messages org.turro.elephant.util.Messages.confirmAcceptation |
( |
| ) |
|
|
static |
Definition at line 103 of file Messages.java.
static Messages question()
Messages add(String word)
◆ confirmCutting()
static Messages org.turro.elephant.util.Messages.confirmCutting |
( |
| ) |
|
|
static |
◆ confirmDeletion()
static Messages org.turro.elephant.util.Messages.confirmDeletion |
( |
| ) |
|
|
static |
◆ confirmMove()
static Messages org.turro.elephant.util.Messages.confirmMove |
( |
| ) |
|
|
static |
◆ confirmProcess()
static Messages org.turro.elephant.util.Messages.confirmProcess |
( |
| ) |
|
|
static |
◆ error() [1/2]
static Messages org.turro.elephant.util.Messages.error |
( |
| ) |
|
|
static |
◆ error() [2/2]
static Messages org.turro.elephant.util.Messages.error |
( |
String |
title | ) |
|
|
static |
Definition at line 127 of file Messages.java.
128 return new Messages(Messagebox.ERROR, title);
◆ format()
Messages org.turro.elephant.util.Messages.format |
( |
String |
word, |
|
|
Object... |
args |
|
) |
| |
Definition at line 70 of file Messages.java.
71 phrases.format(word, args);
◆ info() [1/2]
static Messages org.turro.elephant.util.Messages.info |
( |
| ) |
|
|
static |
◆ info() [2/2]
static Messages org.turro.elephant.util.Messages.info |
( |
String |
title | ) |
|
|
static |
Definition at line 111 of file Messages.java.
112 return new Messages(Messagebox.INFORMATION, title);
◆ line()
Messages org.turro.elephant.util.Messages.line |
( |
| ) |
|
◆ paragraph()
Messages org.turro.elephant.util.Messages.paragraph |
( |
| ) |
|
◆ question() [1/2]
static Messages org.turro.elephant.util.Messages.question |
( |
| ) |
|
|
static |
◆ question() [2/2]
static Messages org.turro.elephant.util.Messages.question |
( |
String |
title | ) |
|
|
static |
Definition at line 119 of file Messages.java.
120 return new Messages(Messagebox.QUESTION, title);
◆ show() [1/2]
void org.turro.elephant.util.Messages.show |
( |
| ) |
|
Definition at line 32 of file Messages.java.
33 Messagebox.show(phrases.newLine(
"\n").toString(), title,
34 Messagebox.OK, type, 0,
null);
◆ show() [2/2]
void org.turro.elephant.util.Messages.show |
( |
Runnable |
onOk | ) |
|
Definition at line 37 of file Messages.java.
38 Messagebox.show(phrases.newLine(
"\n").toString(), title,
39 Messagebox.OK | Messagebox.CANCEL, type, (Event event) -> {
40 switch ((Integer) event.getData()) {
41 case Messagebox.OK -> onOk.run();
The documentation for this class was generated from the following file: