193194195196197198199200201202203
if (where != null) store.where(where); if (param != null) { for (String p : param.split(",")) { String[] parts = p.split(":"); store.param(parts[0],parts[1]); } } if (start != null) store.start(Integer.valueOf(start)); }
209210211212213214215216217218219