/** return the indexed value from the corresponding Cas FSArray as a Java Model object. */
public FeatureStructure get(int i) {
jcasType.casImpl.checkArrayBounds(addr, i);
final LowLevelCAS ll_cas = jcasType.ll_cas;
return ll_cas.ll_getFSForRef(ll_cas.ll_getRefArrayValue(addr, i));
}
/** updates the Cas, setting the indexed value with the corresponding Cas FeatureStructure. */
public void set(int i, FeatureStructure v) {
jcasType.casImpl.checkArrayBounds(addr, i);