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

Public Member Functions

 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 ()
 

Detailed Description

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

Definition at line 27 of file DateChange.java.

Constructor & Destructor Documentation

◆ 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.

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

◆ DateChange() [2/4]

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

Definition at line 33 of file DateChange.java.

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

◆ 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.

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

◆ 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.

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

Member Function Documentation

◆ getNewValueString()

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

Definition at line 46 of file DateChange.java.

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

◆ getOldValueString()

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

Definition at line 51 of file DateChange.java.

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

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