Created
October 21, 2020 13:47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Write a description of class WaktuSholat here. | |
* | |
* @author Abdun Nafi' | |
* @version 21102020 | |
*/ | |
public class WaktuSholat | |
{ | |
private String Shubuh, Syuruq, Dhuhur, Ashar, Maghrib, Isya; | |
WaktuSholat() | |
{ | |
this.Shubuh = "03:45:00"; | |
this.Syuruq = "05:05:00"; | |
this.Dhuhur = "11:14:00"; | |
this.Ashar = "14:23:00"; | |
this.Maghrib = "17:23:00"; | |
this.Isya = "18:33:00"; | |
} | |
String getShubuh(){ | |
return Shubuh; | |
} | |
String getSyuruq(){ | |
return Syuruq; | |
} | |
String getDhuhur(){ | |
return Dhuhur; | |
} | |
String getAshar(){ | |
return Ashar; | |
} | |
String getMaghrib(){ | |
return Maghrib; | |
} | |
String getIsya(){ | |
return Isya; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment