| 213 | } |
| 214 | |
| 215 | std::string TD_TL_writer_java::gen_output_begin() const { |
| 216 | return "package " + package_name + |
| 217 | ";\n\n" |
| 218 | "public class " + |
| 219 | tl_name + " {\n"; |
| 220 | } |
| 221 | |
| 222 | std::string TD_TL_writer_java::gen_output_end() const { |
| 223 | return "}\n"; |
nothing calls this directly
no outgoing calls
no test coverage detected