| 181 | } |
| 182 | |
| 183 | void JavaGenerator::parseSubtemplates() |
| 184 | { |
| 185 | const char *templateName = "java_coders"; |
| 186 | try |
| 187 | { |
| 188 | parse(kJavaCoders, m_templateData); |
| 189 | } |
| 190 | catch (TemplateException &e) |
| 191 | { |
| 192 | throw TemplateException(format_string("Template %s: %s", templateName, e.what())); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void JavaGenerator::generate() |
| 197 | { |
nothing calls this directly
no test coverage detected