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 Self
name(StyledBpmnLabel name)
Sets thename
of the BPMN element.Self
name(String name)
Sets thename
of the BPMN element.Self
nameTextLayoutSettings(WorkflowBpmnTextLayoutSettings textLayoutSettings)
Sets the text layout settings for thename
of the BPMN element.
-
-
-
Method Detail
-
name
Self name(String name)
Sets thename
of 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 thename
of 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 thename
of the BPMN element.- Parameters:
textLayoutSettings
- The text layout settings to apply to the name.- Returns:
- This builder for chaining method calls.
-
-