mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Add blockId string member
This commit is contained in:
@ -40,6 +40,8 @@ public abstract class AbstractBlockWidgetData<
|
|||||||
S extends BlockSlotsInterface,
|
S extends BlockSlotsInterface,
|
||||||
SX extends BlockStylesInterface> extends QWidgetData
|
SX extends BlockStylesInterface> extends QWidgetData
|
||||||
{
|
{
|
||||||
|
private String blockId;
|
||||||
|
|
||||||
private BlockTooltip tooltip;
|
private BlockTooltip tooltip;
|
||||||
private BlockLink link;
|
private BlockLink link;
|
||||||
|
|
||||||
@ -383,4 +385,35 @@ public abstract class AbstractBlockWidgetData<
|
|||||||
return (T) this;
|
return (T) this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for blockId
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getBlockId()
|
||||||
|
{
|
||||||
|
return (this.blockId);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for blockId
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setBlockId(String blockId)
|
||||||
|
{
|
||||||
|
this.blockId = blockId;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for blockId
|
||||||
|
*******************************************************************************/
|
||||||
|
public T withBlockId(String blockId)
|
||||||
|
{
|
||||||
|
this.blockId = blockId;
|
||||||
|
return (T) this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user