private void executeTestCase124() {
   try {
     Hashtable hash = dbxmlutil.getAllPanelAttribute(null);
     int s = (int) hash.size();
     if (s == 0) {
       System.out.println("CATS-JCF-API-DXU-124   ---> PASSED");
     } else {
       System.out.println("CATS-JCF-API-DXU-124   ---> FAILED");
     }
   } catch (Exception e) {
     // e.printStackTrace();
   }
 }
 private void executeTestCase122() {
   try {
     Hashtable hash = dbxmlutil.getAllPanelAttribute("root");
     System.out.println("The all panel attributes are     = " + hash);
     if (hash != null) {
       System.out.println("CATS-JCF-API-DXU-122   ---> PASSED");
     } else {
       System.out.println("CATS-JCF-API-DXU-122   ---> FAILED");
     }
   } catch (Exception e) {
     e.printStackTrace();
   }
 }