Returns the FormatManager for the given column (zero indexed). @param i The column number for which the FormatManager should be returned @return The format for the given column (zero indexed)
(int i)
| 229 | * @return The format for the given column (zero indexed) |
| 230 | */ |
| 231 | public FormatManager<?> getFormat(int i) |
| 232 | { |
| 233 | return columns.get(i).getFormatManager(); |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Returns the FormatManager for the column with the given name. |