| Realizes a property through one getter and one setter.
This renders:
T' field;
T getXXX() { ... }
void setXXX(T value) { ... }
Normally T'=T, but under some tricky circumstances they could be different
(like T'=Integer, T=int.)
This realization is only applicable to fields with (1,1)
or (0,1) multiplicity.
author: Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com) |