Xmappr should support custom getters/setters via annotations set on methods:
@RootElement("primitives")
public static class Primitives {
private int in;
@Attribute
public int getIn() {
return in;
}
@Attribute
public void setIn(int in) {
this.in = in;
}
}
This is also needed for Interface mappings.
Original issue reported on code.google.com by peter.kn...@gmail.com on 25 Jan 2010 at 12:48
Original issue reported on code.google.com by
peter.kn...@gmail.com
on 25 Jan 2010 at 12:48