|
| DateChange (ChangeCategory category, String label, Date oldValue, Date newValue, boolean duplicates) |
|
| DateChange (ChangeCategory category, String label, Date oldValue, Date newValue) |
|
| DateChange (String caption, int order, String label, Date oldValue, Date newValue, boolean duplicates) |
|
| DateChange (String caption, int order, String label, Date oldValue, Date newValue) |
|
String | getNewValueString () |
|
String | getOldValueString () |
|
- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 27 of file DateChange.java.
◆ DateChange() [1/4]
org.turro.registry.DateChange.DateChange |
( |
ChangeCategory |
category, |
|
|
String |
label, |
|
|
Date |
oldValue, |
|
|
Date |
newValue, |
|
|
boolean |
duplicates |
|
) |
| |
Definition at line 29 of file DateChange.java.
30 super(category, label, oldValue, newValue, duplicates);
◆ DateChange() [2/4]
org.turro.registry.DateChange.DateChange |
( |
ChangeCategory |
category, |
|
|
String |
label, |
|
|
Date |
oldValue, |
|
|
Date |
newValue |
|
) |
| |
Definition at line 33 of file DateChange.java.
34 super(category, label, oldValue, newValue);
◆ DateChange() [3/4]
org.turro.registry.DateChange.DateChange |
( |
String |
caption, |
|
|
int |
order, |
|
|
String |
label, |
|
|
Date |
oldValue, |
|
|
Date |
newValue, |
|
|
boolean |
duplicates |
|
) |
| |
Definition at line 37 of file DateChange.java.
38 super(caption, order, label, oldValue, newValue, duplicates);
◆ DateChange() [4/4]
org.turro.registry.DateChange.DateChange |
( |
String |
caption, |
|
|
int |
order, |
|
|
String |
label, |
|
|
Date |
oldValue, |
|
|
Date |
newValue |
|
) |
| |
Definition at line 41 of file DateChange.java.
42 super(caption, order, label, oldValue, newValue);
◆ getNewValueString()
String org.turro.registry.DateChange.getNewValueString |
( |
| ) |
|
Definition at line 46 of file DateChange.java.
47 return getNewValue() !=
null ? DateFormats.format(getNewValue(),
true) :
"";
◆ getOldValueString()
String org.turro.registry.DateChange.getOldValueString |
( |
| ) |
|
Definition at line 51 of file DateChange.java.
52 return getOldValue() !=
null ? DateFormats.format(getOldValue(),
true) :
"";
The documentation for this class was generated from the following file: