A class to store cell renderers and formatters used to set cell data and format
| Modifiers | Name | Description |
|---|---|---|
protected static java.util.concurrent.atomic.AtomicInteger |
FORMAT_SEQUENCE |
|
protected static java.util.concurrent.atomic.AtomicInteger |
RENDERER_SEQUENCE |
|
protected static java.util.SortedSet<FormatEntry> |
formatEntries |
|
protected static java.util.SortedSet<Entry> |
rendererEntries |
| Type | Name and description |
|---|---|
static java.lang.Object |
getFormat(java.lang.Class clazz)Queries the formats registered |
static groovy.lang.Closure |
getRenderer(java.lang.Class clazz)Queries the renderers registered |
static void |
registerCellFormat(java.lang.Class clazz, java.lang.Integer priority, java.lang.String format)Registers a cell format |
static void |
registerCellFormat(java.lang.Class clazz, java.lang.String format)Registers a cell format |
static void |
registerCellFormat(java.lang.Class clazz, java.lang.Integer priority, int format)Registers a cell format |
static void |
registerCellFormat(java.lang.Class clazz, int format)Registers a cell format |
static void |
registerCellRenderer(java.lang.Class clazz, java.lang.Integer priority, groovy.lang.Closure callable)Registers a cell renderer. |
static void |
registerCellRenderer(java.lang.Class clazz, groovy.lang.Closure callable)Registers a cell renderer. |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Queries the formats registered
clazz - The class to search forQueries the renderers registered
clazz - The class to search forRegisters a cell format
clazz - The class to renderpriority - The priorityformat - The format to applyRegisters a cell format
clazz - The class to renderformat - The format to applyRegisters a cell format
clazz - The class to renderpriority - The priorityformat - The format to applyRegisters a cell format
clazz - The class to renderformat - The format to applyRegisters a cell renderer. What is returned from the closure will be set to the cell value
clazz - The class to renderpriority - The prioritycallable - The closure to callRegisters a cell renderer. What is returned from the closure will be set to the cell value
clazz - The class to rendercallable - The closure to call