BrightSide Workbench Full Report + Source Code
org.turro.registry.DateTimeChange Class Reference
Inheritance diagram for org.turro.registry.DateTimeChange:
Collaboration diagram for org.turro.registry.DateTimeChange:

Public Member Functions

 DateTimeChange (ChangeCategory category, String label, Date oldValue, Date newValue, boolean duplicates)
 
 DateTimeChange (ChangeCategory category, String label, Date oldValue, Date newValue)
 
 DateTimeChange (String caption, int order, String label, Date oldValue, Date newValue, boolean duplicates)
 
 DateTimeChange (String caption, int order, String label, Date oldValue, Date newValue)
 
String getNewValueString ()
 
String getOldValueString ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 27 of file DateTimeChange.java.

Constructor & Destructor Documentation

◆ DateTimeChange() [1/4]

org.turro.registry.DateTimeChange.DateTimeChange ( ChangeCategory  category,
String  label,
Date  oldValue,
Date  newValue,
boolean  duplicates 
)

Definition at line 29 of file DateTimeChange.java.

29  {
30  super(category, label, oldValue, newValue, duplicates);
31  }

◆ DateTimeChange() [2/4]

org.turro.registry.DateTimeChange.DateTimeChange ( ChangeCategory  category,
String  label,
Date  oldValue,
Date  newValue 
)

Definition at line 33 of file DateTimeChange.java.

33  {
34  super(category, label, oldValue, newValue);
35  }

◆ DateTimeChange() [3/4]

org.turro.registry.DateTimeChange.DateTimeChange ( String  caption,
int  order,
String  label,
Date  oldValue,
Date  newValue,
boolean  duplicates 
)

Definition at line 37 of file DateTimeChange.java.

37  {
38  super(caption, order, label, oldValue, newValue, duplicates);
39  }

◆ DateTimeChange() [4/4]

org.turro.registry.DateTimeChange.DateTimeChange ( String  caption,
int  order,
String  label,
Date  oldValue,
Date  newValue 
)

Definition at line 41 of file DateTimeChange.java.

41  {
42  super(caption, order, label, oldValue, newValue);
43  }

Member Function Documentation

◆ getNewValueString()

String org.turro.registry.DateTimeChange.getNewValueString ( )

Definition at line 46 of file DateTimeChange.java.

46  {
47  return getNewValue() != null ? DateFormats.format(getNewValue(), false) : "";
48  }
Here is the call graph for this function:

◆ getOldValueString()

String org.turro.registry.DateTimeChange.getOldValueString ( )

Definition at line 51 of file DateTimeChange.java.

51  {
52  return getOldValue() != null ? DateFormats.format(getOldValue(), false) : "";
53  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: