18 package org.turro.registry;
20 import java.util.Date;
21 import org.turro.elephant.util.DateFormats;
29 public DateChange(ChangeCategory category, String label, Date oldValue, Date newValue,
boolean duplicates) {
30 super(category, label, oldValue, newValue, duplicates);
33 public DateChange(ChangeCategory category, String label, Date oldValue, Date newValue) {
34 super(category, label, oldValue, newValue);
37 public DateChange(String caption,
int order, String label, Date oldValue, Date newValue,
boolean duplicates) {
38 super(caption, order, label, oldValue, newValue, duplicates);
41 public DateChange(String caption,
int order, String label, Date oldValue, Date newValue) {
42 super(caption, order, label, oldValue, newValue);
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()
DateChange(ChangeCategory category, String label, Date oldValue, Date newValue, boolean duplicates)
String getOldValueString()