- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 28 of file Toasts.java.
◆ add() [1/4]
Toasts org.turro.elephant.util.Toasts.add |
( |
String |
value, |
|
|
String |
enclose, |
|
|
boolean |
withSpace |
|
) |
| |
Definition at line 88 of file Toasts.java.
89 phrases.add(value, enclose, withSpace);
◆ add() [2/4]
Toasts org.turro.elephant.util.Toasts.add |
( |
String |
word | ) |
|
◆ add() [3/4]
Toasts org.turro.elephant.util.Toasts.add |
( |
String |
word, |
|
|
boolean |
withSpace |
|
) |
| |
Definition at line 78 of file Toasts.java.
79 phrases.add(word, withSpace);
◆ add() [4/4]
Toasts org.turro.elephant.util.Toasts.add |
( |
String |
word, |
|
|
String |
enclose |
|
) |
| |
Definition at line 83 of file Toasts.java.
84 phrases.add(word, enclose);
◆ bottom()
Toasts org.turro.elephant.util.Toasts.bottom |
( |
| ) |
|
Definition at line 50 of file Toasts.java.
51 this.position =
"bottom_center";
◆ closable()
Toasts org.turro.elephant.util.Toasts.closable |
( |
| ) |
|
◆ duration()
Toasts org.turro.elephant.util.Toasts.duration |
( |
int |
duration | ) |
|
Definition at line 55 of file Toasts.java.
56 this.duration = duration;
◆ error()
Toasts org.turro.elephant.util.Toasts.error |
( |
| ) |
|
◆ format()
Toasts org.turro.elephant.util.Toasts.format |
( |
String |
word, |
|
|
Object... |
args |
|
) |
| |
Definition at line 93 of file Toasts.java.
94 phrases.format(word, args);
◆ info()
Toasts org.turro.elephant.util.Toasts.info |
( |
| ) |
|
◆ instance()
static Toasts org.turro.elephant.util.Toasts.instance |
( |
| ) |
|
|
static |
Definition at line 110 of file Toasts.java.
111 return new Toasts(
null);
◆ line()
Toasts org.turro.elephant.util.Toasts.line |
( |
| ) |
|
◆ message()
static Toasts org.turro.elephant.util.Toasts.message |
( |
String |
message | ) |
|
|
static |
Definition at line 114 of file Toasts.java.
static Toasts message(String message)
◆ paragraph()
Toasts org.turro.elephant.util.Toasts.paragraph |
( |
| ) |
|
◆ show()
void org.turro.elephant.util.Toasts.show |
( |
| ) |
|
Definition at line 65 of file Toasts.java.
66 Toast.show(phrases.newLine(
"<br/>").toString(), type, position, duration, closable);
◆ top()
Toasts org.turro.elephant.util.Toasts.top |
( |
| ) |
|
Definition at line 45 of file Toasts.java.
46 this.position =
"top_center";
◆ warning()
Toasts org.turro.elephant.util.Toasts.warning |
( |
| ) |
|
Definition at line 35 of file Toasts.java.
36 this.type =
"warning";
The documentation for this class was generated from the following file: