document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Write a description of class WaktuAdzan here.
  3.  *
  4.  * @author Daffa Tristan Firdaus
  5.  * @version 22 Oktober 2020
  6.  */
  7. public class WaktuAdzan
  8. {
  9.     private String imsak, shubuh, dzuhur, ashar, maghrib, isya;
  10.     public WaktuAdzan()
  11.     {
  12.         this.imsak = "04:02";
  13.         this.shubuh = "04:12";
  14.         this.dzuhur = "11:41";
  15.         this.ashar = "14:51";
  16.         this.maghrib = "17:49";
  17.         this.isya = "18:59";
  18.     }
  19.    
  20.     public String getImsak()
  21.     {
  22.         return imsak;
  23.     }
  24.    
  25.     public String getShubuh()
  26.     {
  27.         return shubuh;
  28.     }
  29.  
  30.     public String getDzuhur()
  31.     {
  32.         return dzuhur;
  33.     }
  34.    
  35.     public String getAshar()
  36.     {
  37.         return ashar;
  38.     }
  39.    
  40.     public String getMaghrib()
  41.     {
  42.         return maghrib;
  43.     }
  44.    
  45.     public String getIsya()
  46.     {
  47.         return isya;
  48.     }
  49. }
');