In Eclipse is there any way that given a class with a list of defined setters, that you can list these out before populating them?
For example:
public class Test {
private String valueA;
private String valueB;
private String valueC;
private String valueD;
public void setValueA(String val) {
this.valueA = val;
}
public void setValueB(String val) {
this.valueB = val;
}
public void setValueC(String val) {
this.valueC = val;
}
public void setValueD(String val) {
this.valueD = val;
}
}
It would be very handy to have a template/shortcut to output:
test.setValueA(value);
test.setValueB(value);
test.setValueC(value);
test.setValueD(value);
Obviously the value isn't there for 4 fields but when you have 100 it would be nice (think JAXB Bean for a nasty piece of XML).
Note: I'm not asking about the Source -> Generate Getters / Setters menu.
Thanks.
