while(it.hasNext()) {
CFXTagClass tag=(CFXTagClass) map.get(it.next());
if(tag instanceof CPPCFXTagClass) {
row++;
qry.addRow(1);
CPPCFXTagClass ctag =(CPPCFXTagClass) tag;
qry.setAt(KeyConstants._displayname,row,tag.getDisplayType());
qry.setAt(KeyConstants._sourcename,row,tag.getSourceName());
qry.setAt(KeyConstants._readonly,row,Caster.toBoolean(tag.isReadOnly()));
qry.setAt(KeyConstants._isvalid,row,Caster.toBoolean(tag.isValid()));
qry.setAt(KeyConstants._name,row,ctag.getName());
qry.setAt(PROCEDURE,row,ctag.getProcedure());
qry.setAt(SERVER_LIBRARY,row,ctag.getServerLibrary());
qry.setAt(KEEP_ALIVE,row,Caster.toBoolean(ctag.getKeepAlive()));
}
}
pageContext.setVariable(getString("admin",action,"returnVariable"),qry);
}