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

Public Member Functions

 BooleanChange (ChangeCategory category, String label, Boolean oldValue, Boolean newValue, boolean duplicates)
 
 BooleanChange (ChangeCategory category, String label, Boolean oldValue, Boolean newValue)
 
 BooleanChange (String caption, int order, String label, Boolean oldValue, Boolean newValue, boolean duplicates)
 
 BooleanChange (String caption, int order, String label, Boolean oldValue, Boolean 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 26 of file BooleanChange.java.

Constructor & Destructor Documentation

◆ BooleanChange() [1/4]

org.turro.registry.BooleanChange.BooleanChange ( ChangeCategory  category,
String  label,
Boolean  oldValue,
Boolean  newValue,
boolean  duplicates 
)

Definition at line 28 of file BooleanChange.java.

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

◆ BooleanChange() [2/4]

org.turro.registry.BooleanChange.BooleanChange ( ChangeCategory  category,
String  label,
Boolean  oldValue,
Boolean  newValue 
)

Definition at line 32 of file BooleanChange.java.

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

◆ BooleanChange() [3/4]

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

Definition at line 36 of file BooleanChange.java.

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

◆ BooleanChange() [4/4]

org.turro.registry.BooleanChange.BooleanChange ( String  caption,
int  order,
String  label,
Boolean  oldValue,
Boolean  newValue 
)

Definition at line 40 of file BooleanChange.java.

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

Member Function Documentation

◆ getNewValueString()

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

Definition at line 45 of file BooleanChange.java.

45  {
46  return BooleanFormats.format(getNewValue());
47  }
Here is the call graph for this function:

◆ getOldValueString()

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

Definition at line 50 of file BooleanChange.java.

50  {
51  return BooleanFormats.format(getOldValue());
52  }
Here is the call graph for this function:

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