标签: java eclipse eclipse-templates
有没有办法可以编写模板来生成构造函数的复制方法:
public MyClass(SomeOtherClassWithSameInterface i) { a = i.getA(); b = i.getB(); }
老实说,它不一定是完美的。对于我想要生成的每个字段:
${field} = i.get${field}();
需要为每个字段执行此操作。如果它做了骆驼套管,它会很好; - )