Interface IWorkflowBpmnLayoutNamedBuilder<Self extends IWorkflowBpmnLayoutNamedBuilder<Self>>
-
- Type Parameters:
Self- The type of the builder itself, for fluent API chaining.
- All Known Subinterfaces:
IWorkflowBpmnLayoutDataObjectBuilder,IWorkflowBpmnLayoutDataStoreBuilder,IWorkflowBpmnLayoutEventBuilder,IWorkflowBpmnLayoutGatewayBuilder,IWorkflowBpmnLayoutNamedOutsideBuilder<Self>,IWorkflowBpmnLayoutSubProcessBuilder,IWorkflowBpmnLayoutTaskBuilder
public interface IWorkflowBpmnLayoutNamedBuilder<Self extends IWorkflowBpmnLayoutNamedBuilder<Self>>Interface for layout builders of BPMN elements that can have a name that gets placed somewhere in theBpmnDiagram.- Since:
- 8.4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Selfname(StyledBpmnLabel name)Sets thenameof the BPMN element.Selfname(String name)Sets thenameof the BPMN element.SelfnameTextLayoutSettings(WorkflowBpmnTextLayoutSettings textLayoutSettings)Sets the text layout settings for thenameof the BPMN element.
-
-
-
Method Detail
-
name
Self name(String name)
Sets thenameof the BPMN element. When not set, no name alignment item will be created.- Parameters:
name- The name of the BPMN element.- Returns:
- This builder for chaining method calls.
-
name
Self name(StyledBpmnLabel name)
Sets thenameof the BPMN element. When not set, no name alignment item will be created.- Parameters:
name- The name of the BPMN element.- Returns:
- This builder for chaining method calls.
-
nameTextLayoutSettings
Self nameTextLayoutSettings(WorkflowBpmnTextLayoutSettings textLayoutSettings)
Sets the text layout settings for thenameof the BPMN element.- Parameters:
textLayoutSettings- The text layout settings to apply to the name.- Returns:
- This builder for chaining method calls.
-
-