Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class RunningText here.
- *
- * @author Daffa Tristan Firdaus
- * @version 22 Oktober 2020
- */
- public class RunningText
- {
- private String imsak, shubuh, dzuhur, ashar, maghrib, isya, blank;
- public RunningText()
- {
- this.imsak = "Sekarang Memasuki Waktu Imsak";
- this.shubuh = "Sekarang Memasuki Waktu Shubuh";
- this.dzuhur = "Sekarang Memasuki Waktu Dzuhur";
- this.ashar = "Sekarang Memasuki Waktu Ashar";
- this.maghrib = "Sekarang Memasuki Waktu Maghrib";
- this.isya = "Sekarang Memasuki Waktu Isya'";
- this.blank = "Perbanyak Do'a dan Dzikir Kepada Allah SWT";
- }
- public String imsak()
- {
- return imsak;
- }
- public String shubuh()
- {
- return shubuh;
- }
- public String dzuhur()
- {
- return dzuhur;
- }
- public String ashar()
- {
- return ashar;
- }
- public String maghrib()
- {
- return maghrib;
- }
- public String isya()
- {
- return isya;
- }
- public String blank()
- {
- return blank;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment