Advertisement
psi_mmobile

Untitled

Jul 7th, 2022
999
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1.     public int getPoiListSize() {
  2.         int pois = 0;
  3.         if (ADFUtils.findIterator("VGuiUserOcPoiPayrollFilterView1Iterator") != null) {
  4.             pois = ADFUtils.findIterator("VGuiUserOcPoiPayrollFilterView1Iterator").getAllRowsInRange().length;
  5.             System.out.println(pois + "pois ");
  6.         } else {
  7.             log.debug(" error  VGuiUserOcPoiPayrollFilterView1Iterator is null when loading the page? might be better to get the view and execute it.");
  8.         }
  9.  
  10.         return pois;
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement