()
| 220 | private static Schema SCHEMA; |
| 221 | |
| 222 | public static Schema getSchema() { |
| 223 | // FIXME: doing something? |
| 224 | if(SCHEMA == null) { |
| 225 | // Generate the latest schema |
| 226 | SCHEMA = createSchema(); |
| 227 | } |
| 228 | return SCHEMA; |
| 229 | } |
| 230 | |
| 231 | // ========================================================================= |
| 232 | // Constructors |
no test coverage detected