Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class PrayerTime here.
- *
- * @author Ahmad Lamaul Farid
- * @version 21 Oktober 2020
- */
- public class PrayerTime
- {
- private String imsak, shubuh, terbit, dhuha, dhuhur, ashar, maghrib, isya;
- public PrayerTime()
- {
- this.imsak = "03:41:00";
- this.shubuh = "03:51:00";
- this.terbit = "05:06:00";
- this.dhuha = "05:30:00";
- this.dhuhur = "11:19:00";
- this.ashar = "14:28:00";
- this.maghrib = "17:28:00";
- this.isya = "18:39:00";
- }
- public String getImsak()
- {
- return imsak;
- }
- public String getShubuh()
- {
- return shubuh;
- }
- public String getTerbit()
- {
- return terbit;
- }
- public String getDhuha()
- {
- return dhuha;
- }
- public String getDhuhur()
- {
- return dhuhur;
- }
- public String getAshar()
- {
- return ashar;
- }
- public String getMaghrib()
- {
- return maghrib;
- }
- public String getIsya()
- {
- return isya;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement