- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 29 of file FileListbox.java.
◆ afterCompose()
void org.turro.zkoss.input.FileListbox.afterCompose |
( |
| ) |
|
Definition at line 65 of file FileListbox.java.
66 File files[] = dir.listFiles(
new FileFilter() {
68 public boolean accept(File pathname) {
69 return pathname.isFile() && (exact ? pathname.getName().matches(filter) :
70 Strings.finds(pathname.getName(), filter));
73 if(files !=
null && files.length > 0)
setCollection(Arrays.asList(files));
◆ convertToString()
String org.turro.zkoss.input.FileListbox.convertToString |
( |
File |
v | ) |
|
|
protected |
◆ getDir()
File org.turro.zkoss.input.FileListbox.getDir |
( |
| ) |
|
◆ getFilter()
String org.turro.zkoss.input.FileListbox.getFilter |
( |
| ) |
|
◆ isExact()
boolean org.turro.zkoss.input.FileListbox.isExact |
( |
| ) |
|
◆ setDir()
void org.turro.zkoss.input.FileListbox.setDir |
( |
File |
dir | ) |
|
◆ setExact()
void org.turro.zkoss.input.FileListbox.setExact |
( |
boolean |
exact | ) |
|
◆ setFilter()
void org.turro.zkoss.input.FileListbox.setFilter |
( |
String |
filter | ) |
|
The documentation for this class was generated from the following file: