18 package org.turro.registry;
20 import java.util.Date;
21 import org.turro.elephant.util.DateFormats;
29 public DateTimeChange(ChangeCategory category, String label, Date oldValue, Date newValue,
boolean duplicates) {
30 super(category, label, oldValue, newValue, duplicates);
33 public DateTimeChange(ChangeCategory category, String label, Date oldValue, Date newValue) {
34 super(category, label, oldValue, newValue);
37 public DateTimeChange(String caption,
int order, String label, Date oldValue, Date newValue,
boolean duplicates) {
38 super(caption, order, label, oldValue, newValue, duplicates);
41 public DateTimeChange(String caption,
int order, String label, Date oldValue, Date newValue) {
42 super(caption, order, label, oldValue, newValue);
String getOldValueString()
DateTimeChange(ChangeCategory category, String label, Date oldValue, Date newValue, boolean duplicates)
DateTimeChange(String caption, int order, String label, Date oldValue, Date newValue, boolean duplicates)
DateTimeChange(String caption, int order, String label, Date oldValue, Date newValue)
DateTimeChange(ChangeCategory category, String label, Date oldValue, Date newValue)
String getNewValueString()