Add blockId string member

This commit is contained in:
2024-03-05 14:33:02 -06:00
parent 44b75b6437
commit 7b9f659afa

View File

@ -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;
}
} }