1. sn
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
package net.t2code.automatedMessages.objects;
|
||||
|
||||
import org.bukkit.Sound;
|
||||
|
||||
import javax.sound.midi.Soundbank;
|
||||
import java.util.List;
|
||||
|
||||
public class Message {
|
||||
@@ -7,21 +10,42 @@ public class Message {
|
||||
public String key;
|
||||
public Boolean enable;
|
||||
public String message;
|
||||
|
||||
public Boolean soundEnable;
|
||||
public Sound sound;
|
||||
public Integer interval;
|
||||
public Boolean cronJob;
|
||||
public String cronJobString;
|
||||
public Boolean exactTime;
|
||||
public String timeMinute;
|
||||
public String timeHour;
|
||||
public String timeDayOfMonth;
|
||||
public String timeMonth;
|
||||
public String timeDayOfWeek;
|
||||
|
||||
public Message(String key,
|
||||
Boolean enable,
|
||||
String message,
|
||||
Boolean soundEnable,
|
||||
Sound sound,
|
||||
Integer interval,
|
||||
Boolean cronJob,
|
||||
String cronJobString) {
|
||||
|
||||
Boolean exactTime,
|
||||
String timeMinute,
|
||||
String timeHour,
|
||||
String timeDayOfMonth,
|
||||
String timeMonth,
|
||||
String timeDayOfWeek) {
|
||||
this.key = key;
|
||||
this.enable = enable;
|
||||
this.message = message;
|
||||
this.soundEnable = soundEnable;
|
||||
this.sound=sound;
|
||||
this.interval = interval;
|
||||
this.cronJob = cronJob;
|
||||
this.cronJobString=cronJobString;
|
||||
this.exactTime = exactTime;
|
||||
this.timeMinute = timeMinute;
|
||||
this.timeHour = timeHour;
|
||||
this.timeDayOfMonth = timeDayOfMonth;
|
||||
this.timeMonth = timeMonth;
|
||||
this.timeDayOfWeek = timeDayOfWeek;
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user