- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 33 of file Constraints.java.
◆ getDaysOfMonth()
◆ getHours()
◆ getMinutes()
◆ getMonths()
◆ getWeekDays()
◆ isEmpty()
boolean org.turro.scheduler.motor.Constraints.isEmpty |
( |
| ) |
|
Definition at line 85 of file Constraints.java.
86 return months.isEmpty() && daysOfMonth.isEmpty() &&
87 weekDays.isEmpty() && hours.isEmpty() && minutes.isEmpty();
◆ isValid()
boolean org.turro.scheduler.motor.Constraints.isValid |
( |
Date |
date | ) |
|
Definition at line 61 of file Constraints.java.
65 boolean valid = months.
isValid(date);
66 if(valid) valid = daysOfMonth.
isValid(date);
67 if(valid) valid = weekDays.
isValid(date);
68 if(valid) valid = hours.
isValid(date);
69 if(valid) valid = minutes.
isValid(date);
boolean isValid(Date date)
boolean isValid(Date date)
boolean isValid(Date date)
boolean isValid(Date date)
boolean isValid(Date date)
◆ needsRefresh()
boolean org.turro.scheduler.motor.Constraints.needsRefresh |
( |
| ) |
|
◆ readXML()
void org.turro.scheduler.motor.Constraints.readXML |
( |
Element |
root | ) |
|
Definition at line 90 of file Constraints.java.
91 months.
readXML(root.getChild(
"months"));
92 daysOfMonth.
readXML(root.getChild(
"days-of-month"));
93 weekDays.
readXML(root.getChild(
"week-days"));
94 hours.
readXML(root.getChild(
"hours"));
95 minutes.
readXML(root.getChild(
"minutes"));
void readXML(Element root)
void readXML(Element root)
void readXML(Element root)
void readXML(Element root)
void readXML(Element root)
◆ writeXML()
void org.turro.scheduler.motor.Constraints.writeXML |
( |
Element |
root | ) |
|
Definition at line 98 of file Constraints.java.
99 Element el =
new Element(
"months");
103 el =
new Element(
"days-of-month");
107 el =
new Element(
"week-days");
111 el =
new Element(
"hours");
115 el =
new Element(
"minutes");
void writeXML(Element root)
void writeXML(Element root)
void writeXML(Element root)
void writeXML(Element root)
void writeXML(Element root)
The documentation for this class was generated from the following file: