Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class WaktuAdzan here.
- *
- * @author Daffa Tristan Firdaus
- * @version 22 Oktober 2020
- */
- public class WaktuAdzan
- {
- private String imsak, shubuh, dzuhur, ashar, maghrib, isya;
- public WaktuAdzan()
- {
- this.imsak = "04:02";
- this.shubuh = "04:12";
- this.dzuhur = "11:41";
- this.ashar = "14:51";
- this.maghrib = "17:49";
- this.isya = "18:59";
- }
- public String getImsak()
- {
- return imsak;
- }
- public String getShubuh()
- {
- return shubuh;
- }
- public String getDzuhur()
- {
- return dzuhur;
- }
- public String getAshar()
- {
- return ashar;
- }
- public String getMaghrib()
- {
- return maghrib;
- }
- public String getIsya()
- {
- return isya;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment