Package | Description |
---|---|
lazyj.widgets |
This package is a collection of useful HTML helper objects.
|
Modifier and Type | Method and Description |
---|---|
java.util.Collection<Option<K,V>> |
OptionProvider.getOptions()
Get the collection of options.
|
java.util.Collection<Option<K,V>> |
DBOptionList.getOptions() |
java.util.Collection<Option<K,V>> |
Tree.getOptions()
|
java.util.Collection<Option<K,java.lang.String>> |
Tree.getOptionsFullPath(java.lang.String sSeparator)
Get the options having as value the concatenated values of the parents and their own, separated by
the specified separator.
|
Modifier and Type | Method and Description |
---|---|
void |
OptionFormatter.formatOption(Option<?,?> option,
BasePage p)
Callback function that further processes each Option.
|
Constructor and Description |
---|
Select(java.util.Collection<Option<K,V>> options)
Build the list of options from a collection.
|
Select(java.util.Collection<Option<K,V>> options,
java.util.Set<K> selected)
Build the list of options from a collection, selecting by default the elements that show up in the set.
|
Select(java.util.Collection<Option<K,V>> options,
java.util.Set<K> selected,
java.lang.String sIndent)
Build the list of options from a collection, selecting by default the elements that show up in the set,
indenting options that have level>0 with some string.
|
Select(java.util.Collection<Option<K,V>> options,
java.util.Set<K> selected,
java.lang.String sIndent,
BasePage pOption)
Build the list of options from a collection, selecting by default the elements that show up in the set,
indenting options that have level>0 with some string.
|
Select(java.util.Collection<Option<K,V>> options,
java.util.Set<K> selected,
java.lang.String sIndent,
BasePage pOption,
OptionFormatter formatter)
Build the list of options from a collection, selecting by default the elements that show up in the set,
indenting options that have level>0 with some string.
|