}
// FUTURE add to interface and set above to deprecated
public Object getDataFromACollection(PageContext pc,Key key, Object defaultValue) {
//Object rtn;
QueryColumn col;
// get data from queries
for(int i=start;i<queries.length;i++) {
col = queries[i].getColumn(key,null);
if(col!=null) return col.get(queries[i].getCurrentrow(pc.getId()),NullSupportHelper.empty());
//rtn=((Objects)queries[i]).get(pc,key,Null.NULL);
//if(rtn!=Null.NULL) return rtn;
}
return defaultValue;
}