for( ; argIdx < rom.msg.getArgCount(); argIdx++ ) {
idx1 = ((Number) rom.msg.getArg( argIdx )).intValue();
if( (idx1 >= 0) && (idx1 < trail.getNumStakes()) ) {
coll.add( trail.get( idx1, true ));
} else {
coll.add( new Marker( -1, "" ));
}
}
return oscGetMarkers( coll );
}
catch( ClassCastException e1 ) {