Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * @author Timotius Wirawan
- */
- public class PrayTime
- {
- private String Shubuh, Syuruq, Dhuhur, Ashar, Maghrib, Isya;
- PrayTime()
- {
- this.Shubuh = "03:45:00";
- this.Syuruq = "05:00:00";
- this.Dhuhur = "11:15:00";
- this.Ashar = "14:20:00";
- this.Maghrib = "17:20:00";
- this.Isya = "18:30: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;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment