Add field increaseIsGood

This commit is contained in:
2022-12-14 14:53:03 -06:00
parent 6186b17e92
commit 59cbf83860

View File

@ -42,7 +42,8 @@ public class StatisticsData extends QWidgetData
private Number count;
private Number percentageAmount;
private String percentageLabel;
private boolean isCurrency = false;
private boolean isCurrency = false;
private boolean increaseIsGood = true;
@ -238,4 +239,38 @@ public class StatisticsData extends QWidgetData
return (this);
}
/*******************************************************************************
** Getter for increaseIsGood
**
*******************************************************************************/
public boolean getIncreaseIsGood()
{
return increaseIsGood;
}
/*******************************************************************************
** Setter for increaseIsGood
**
*******************************************************************************/
public void setIncreaseIsGood(boolean increaseIsGood)
{
this.increaseIsGood = increaseIsGood;
}
/*******************************************************************************
** Fluent setter for increaseIsGood
**
*******************************************************************************/
public StatisticsData withIncreaseIsGood(boolean increaseIsGood)
{
this.increaseIsGood = increaseIsGood;
return (this);
}
}