◆ DaysOfMonthListbox()
org.turro.zkoss.input.DaysOfMonthListbox.DaysOfMonthListbox |
( |
| ) |
|
Definition at line 32 of file DaysOfMonthListbox.java.
33 TreeSet<Integer> days =
new TreeSet<Integer>();
34 for(
int d = 1; d <= 31; d++) {
40 setSelectFirst(
false);
◆ convertToString()
String org.turro.zkoss.input.DaysOfMonthListbox.convertToString |
( |
Integer |
v | ) |
|
|
protected |
◆ getStringValues() [1/2]
String org.turro.zkoss.input.DaysOfMonthListbox.getStringValues |
( |
| ) |
|
◆ getStringValues() [2/2]
static String org.turro.zkoss.input.DaysOfMonthListbox.getStringValues |
( |
Collection< Integer > |
values | ) |
|
|
static |
Definition at line 61 of file DaysOfMonthListbox.java.
62 PhraseBuilder pb =
new PhraseBuilder();
63 for(Integer i : values) {
64 pb.addWord(i.toString());
65 pb.addPendingSeparator(
", ");
◆ selectItemByText()
void org.turro.zkoss.input.DaysOfMonthListbox.selectItemByText |
( |
String |
value | ) |
|
Definition at line 48 of file DaysOfMonthListbox.java.
49 String[] va = value ==
null ? null : value.split(
",");
50 ArrayList<Integer> ali =
new ArrayList<Integer>();
52 ali.add(Integer.valueOf(v.trim()));
The documentation for this class was generated from the following file: