| 823 | } |
| 824 | |
| 825 | bool idl_mapping_java::gen_native(UTL_ScopedName *name, const char *repoid) |
| 826 | { |
| 827 | JavaName jn(name); |
| 828 | |
| 829 | if (idl_global->dcps_support_zero_copy_read() |
| 830 | && jn.clazz_.substr(jn.clazz_.size() - 3) == "Seq") { |
| 831 | string held = jn.clazz_.substr(0, jn.clazz_.size() - 3) + "[]"; |
| 832 | return gen_helper(jn, repoid) && gen_holder(jn, held.c_str()); |
| 833 | } |
| 834 | |
| 835 | return true; |
| 836 | } |
| 837 | |
| 838 | namespace { |
| 839 | void writeUnionDefaultValue(ostream &os, AST_Expression::ExprType udisc_type, |
nothing calls this directly
no test coverage detected