if(ext==null) sct.setEL(e.getKey(), nw);
else if(ext instanceof CastableArray){
((CastableArray)ext).appendEL(nw);
}
else {
CastableArray ca=new CastableArray();
ca.appendEL(Caster.toString(ext,null));
ca.appendEL(nw);
sct.setEL(e.getKey(), ca);
}
}
}