Skip to content

Instantly share code, notes, and snippets.

@Abdunnafi25
Created October 21, 2020 13:47
/**
* 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