// [RESULT]
// T[] r = new T[<ref>.size()];
// for( int i=0; i<r.length; i++ )
// r[i] = unbox(<ref>.get(i));
JVar $r = body.decl(exposedType.array(),"r",JExpr.newArray(exposedType, acc.ref(true).invoke("size")));
JForLoop loop = body._for();
JVar $i = loop.init(codeModel.INT,"__i",JExpr.lit(0));
loop.test($i.lt($r.ref("length")));
loop.update($i.incr());
loop.body().assign( $r.component($i),
primitiveType.unwrap(acc.ref(true).invoke("get").arg($i)) );
body._return($r);
}
List<Object> returnTypes = listPossibleTypes(prop);
writer.javadoc().addReturn().append("array of\n").append(returnTypes);
// [RESULT]
// ET getX(int idx) {
// if( <var>==null ) throw new IndexOutOfBoundsException();
// return unbox(<var>.get(idx));
// }
JMethod $get = writer.declareMethod(exposedType,"get"+prop.getName(true));
$idx = writer.addParameter(codeModel.INT,"idx");
$get.body()._if(acc.ref(true).eq(JExpr._null()))._then()
._throw(JExpr._new(codeModel.ref(IndexOutOfBoundsException.class)));
writer.javadoc().append(prop.javadoc);
$get.body()._return(acc.unbox(acc.ref(true).invoke("get").arg($idx) ));
writer.javadoc().addReturn().append("one of\n").append(returnTypes);
// [RESULT] int getXLength() {
// if( <var>==null ) throw new IndexOutOfBoundsException();
// return <ref>.size();
// }
JMethod $getLength = writer.declareMethod(codeModel.INT,"get"+prop.getName(true)+"Length");
$getLength.body()._if(acc.ref(true).eq(JExpr._null()))._then()
._return(JExpr.lit(0));
$getLength.body()._return(acc.ref(true).invoke("size"));
// [RESULT] void setX(ET[] values) {
// clear();
// int len = values.length;
// for( int i=0; i<len; i++ )
// <ref>.add(values[i]);
// }
$setAll = writer.declareMethod(
codeModel.VOID,
"set"+prop.getName(true));
writer.javadoc().append(prop.javadoc);
$value = writer.addParameter(exposedType.array(),"values");
$setAll.body().invoke(acc.ref(false),"clear");
JVar $len = $setAll.body().decl(codeModel.INT,"len", $value.ref("length"));
JForLoop _for = $setAll.body()._for();
JVar $i = _for.init( codeModel.INT, "i", JExpr.lit(0) );
_for.test( JOp.lt($i,$len) );
_for.update( $i.incr() );
_for.body().invoke(acc.ref(true),"add").arg(castToImplType(acc.box($value.component($i))));
writer.javadoc().addParam($value)
.append("allowed objects are\n")
.append(returnTypes);