mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Add field increaseIsGood
This commit is contained in:
@ -42,7 +42,8 @@ public class StatisticsData extends QWidgetData
|
|||||||
private Number count;
|
private Number count;
|
||||||
private Number percentageAmount;
|
private Number percentageAmount;
|
||||||
private String percentageLabel;
|
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);
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user