Realizes a property as an "indexed property"
as specified in the JAXB spec.
We will generate the following set of methods:
T[] getX();
T getX( int idx );
void setX(T[] values);
void setX( int idx, T value );
We still use List as our back storage.
This renderer also handles boxing/unboxing if
T is a boxed type.
author: Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com) |