mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
CE-878: added sublabel to widget data
This commit is contained in:
@ -34,6 +34,7 @@ import java.util.Map;
|
|||||||
public abstract class QWidgetData
|
public abstract class QWidgetData
|
||||||
{
|
{
|
||||||
private String label;
|
private String label;
|
||||||
|
private String sublabel;
|
||||||
private String footerHTML;
|
private String footerHTML;
|
||||||
private List<String> dropdownNameList;
|
private List<String> dropdownNameList;
|
||||||
private List<String> dropdownLabelList;
|
private List<String> dropdownLabelList;
|
||||||
@ -51,6 +52,7 @@ public abstract class QWidgetData
|
|||||||
private List<List<Serializable>> csvData;
|
private List<List<Serializable>> csvData;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** Getter for type
|
** Getter for type
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
@ -356,4 +358,35 @@ public abstract class QWidgetData
|
|||||||
return (this);
|
return (this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for sublabel
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getSublabel()
|
||||||
|
{
|
||||||
|
return (this.sublabel);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for sublabel
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setSublabel(String sublabel)
|
||||||
|
{
|
||||||
|
this.sublabel = sublabel;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for sublabel
|
||||||
|
*******************************************************************************/
|
||||||
|
public QWidgetData withSublabel(String sublabel)
|
||||||
|
{
|
||||||
|
this.sublabel = sublabel;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user