| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /**
- * A BPMN-specific element factory.
- *
- *
- * @extends {BaseElementFactory<T, U, V, W>}
- *
- */
- export default class ElementFactory<T extends import("../../model/Types").Connection = import("../../model/Types").Connection, U extends import("../../model/Types").Label = import("../../model/Types").Label, V extends import("../../model/Types").Root = import("../../model/Types").Root, W extends import("../../model/Types").Shape = import("../../model/Types").Shape> extends BaseElementFactory<T, U, V, W> {
- static $inject: string[];
- /**
- * @param bpmnFactory
- * @param moddle
- * @param translate
- */
- constructor(bpmnFactory: BpmnFactory, moddle: Moddle, translate: Translate);
- /**
- * Create a label.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- create(elementType: 'label', attrs?: Partial<Label> & Partial<BpmnAttributes>): U;
- /**
- * Create a connection.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- create(
- elementType: 'connection',
- attrs?: Partial<Connection> & Partial<BpmnAttributes>
- ): T;
- /**
- * Create a shape.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- create(elementType: 'shape', attrs?: Partial<Shape> & Partial<BpmnAttributes>): W;
- /**
- * Create a root element.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- create(elementType: 'root', attrs?: Partial<Root> & Partial<BpmnAttributes>): V;
- /**
- * Create a BPMN connection.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- createElement(
- elementType: 'connection',
- attrs?: Partial<Connection> & Partial<BpmnAttributes>
- ): T;
- /**
- * Create a BPMN shape.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- createElement(elementType: 'shape', attrs?: Partial<Shape> & Partial<BpmnAttributes>): W;
- /**
- * Create a BPMN root element.
- *
- * @param elementType
- * @param attrs
- * @return
- */
- createElement(elementType: 'root', attrs?: Partial<Root> & Partial<BpmnAttributes>): V;
- /**
- * Get the default size of a diagram element.
- *
- * @param element The element.
- * @param di The DI.
- *
- * @return Default width and height of the element.
- */
- getDefaultSize(element: Element, di: ModdleElement): Dimensions;
- /**
- * Create participant.
- *
- * @param attrs
- * Attributes or whether the participant is expanded.
- *
- * @return The created participant.
- */
- createParticipantShape(attrs?: boolean | (Partial<Shape> & Partial<BpmnAttributes>)): W;
- }
- export type Translate = typeof import("diagram-js/lib/i18n/translate/translate").default;
- type Dimensions = import('diagram-js/lib/util/Types').Dimensions;
- type BpmnFactory = import('./BpmnFactory').default;
- type BpmnAttributes = import('../../model/Types').BpmnAttributes;
- type Connection = import('../../model/Types').Connection;
- type Element = import('../../model/Types').Element;
- type Label = import('../../model/Types').Label;
- type Root = import('../../model/Types').Root;
- type Shape = import('../../model/Types').Shape;
- type Moddle = import('../../model/Types').Moddle;
- type ModdleElement = import('../../model/Types').ModdleElement;
- import BaseElementFactory from 'diagram-js/lib/core/ElementFactory';
|