Lines Matching refs:semantic

16508 	function getLabelAttr(semantic) {  argument
16510 is$1(semantic, 'bpmn:FlowElement') ||
16511 is$1(semantic, 'bpmn:Participant') ||
16512 is$1(semantic, 'bpmn:Lane') ||
16513 is$1(semantic, 'bpmn:SequenceFlow') ||
16514 is$1(semantic, 'bpmn:MessageFlow') ||
16515 is$1(semantic, 'bpmn:DataInput') ||
16516 is$1(semantic, 'bpmn:DataOutput')
16521 if (is$1(semantic, 'bpmn:TextAnnotation')) {
16525 if (is$1(semantic, 'bpmn:Group')) {
16530 function getCategoryValue(semantic) { argument
16531 var categoryValueRef = semantic['categoryValueRef'];
16542 var semantic = element.businessObject,
16543 attr = getLabelAttr(semantic);
16549 return getCategoryValue(semantic);
16552 return semantic[attr] || '';
16558 var semantic = element.businessObject,
16559 attr = getLabelAttr(semantic);
16564 semantic['categoryValueRef'].value = text;
16566 semantic[attr] = text;
17128 var semantic = getSemantic(element);
17130 return renderLabel(parentGfx, semantic.name, {
17204 var semantic = getSemantic(element);
17206 if (!semantic.isInterrupting) {
17668 var semantic = getSemantic(element);
17673 if (semantic.instantiate) {
17846 var semantic = getSemantic(element);
17848 if (semantic.$type === 'bpmn:Lane') {
17849 var text = semantic.name;
17937 var semantic = getSemantic(element);
17947 var type = semantic.eventGatewayType;
17948 var instantiate = !!semantic.instantiate;
18057 var semantic = getSemantic(element);
18069 if (semantic.associationDirection === 'One' ||
18070 semantic.associationDirection === 'Both') {
18074 if (semantic.associationDirection === 'Both') {
18098 var semantic = getSemantic(element),
18118 if (semantic.messageRef) {
18140 var labelText = semantic.messageRef.name;
18179 var semantic = getSemantic(element);
18181 if (isCollection(semantic)) {
18235 var semantic = getSemantic(element),
18236 cancel = semantic.cancelActivity;
19585 function isLabelExternal(semantic) { argument
19586 return is$1(semantic, 'bpmn:Event') ||
19587 is$1(semantic, 'bpmn:Gateway') ||
19588 is$1(semantic, 'bpmn:DataStoreReference') ||
19589 is$1(semantic, 'bpmn:DataObjectReference') ||
19590 is$1(semantic, 'bpmn:DataInput') ||
19591 is$1(semantic, 'bpmn:DataOutput') ||
19592 is$1(semantic, 'bpmn:SequenceFlow') ||
19593 is$1(semantic, 'bpmn:MessageFlow') ||
19594 is$1(semantic, 'bpmn:Group');
19685 function getExternalLabelBounds(semantic, element) { argument
19690 di = semantic.di,
19722 function elementData(semantic, attrs) { argument
19724 id: semantic.id,
19725 type: semantic.$type,
19726 businessObject: semantic
19743 function notYetDrawn(translate, semantic, refSemantic, property) { argument
19746 referenced: elementToString(semantic),
19788 BpmnImporter.prototype.add = function(semantic, parentElement) { argument
19790 var di = semantic.di,
19803 element = this._elementFactory.createRoot(elementData(semantic));
19811 var collapsed = !isExpanded(semantic),
19812 isFrame = isFrameElement(semantic);
19815 var bounds = semantic.di.bounds;
19817 element = this._elementFactory.createShape(elementData(semantic, {
19827 if (is$1(semantic, 'bpmn:BoundaryEvent')) {
19828 this._attachBoundary(semantic, element);
19832 if (is$1(semantic, 'bpmn:Lane')) {
19836 if (is$1(semantic, 'bpmn:DataStoreReference')) {
19850 var source = this._getSource(semantic),
19851 target = this._getTarget(semantic);
19855 element = this._elementFactory.createConnection(elementData(semantic, {
19859 waypoints: getWaypoints(semantic, source, target)
19862 if (is$1(semantic, 'bpmn:DataAssociation')) {
19872 if (is$1(semantic, 'bpmn:SequenceFlow')) {
19880 semantic: elementToString(semantic)
19885 if (isLabelExternal(semantic) && getLabel(element)) {
19886 this.addLabel(semantic, element);
19908 semantic: elementToString(boundarySemantic)
19935 BpmnImporter.prototype.addLabel = function(semantic, element) { argument
19940 bounds = getExternalLabelBounds(semantic, element);
19950 label = this._elementFactory.createLabel(elementData(semantic, {
19951 id: semantic.id + '_label',
19969 BpmnImporter.prototype._getEnd = function(semantic, side) { argument
19973 type = semantic.$type,
19976 refSemantic = semantic[side + 'Ref'];
19987 refSemantic = semantic.$parent;
19997 throw notYetDrawn(translate, semantic, refSemantic, side + 'Ref');
20000 semantic: elementToString(semantic),
20006 BpmnImporter.prototype._getSource = function(semantic) { argument
20007 return this._getEnd(semantic, 'source');
20010 BpmnImporter.prototype._getTarget = function(semantic) { argument
20011 return this._getEnd(semantic, 'target');
20015 BpmnImporter.prototype._getElement = function(semantic) { argument
20016 return this._elementRegistry.get(semantic.id);
20032 function isFrameElement(semantic) { argument
20033 return is$1(semantic, 'bpmn:Group');
48056 BpmnFactory.prototype.createDiShape = function(semantic, bounds, attrs) { argument
48059 bpmnElement: semantic,
48083 BpmnFactory.prototype.createDiEdge = function(semantic, waypoints, attrs) { argument
48085 bpmnElement: semantic
48089 BpmnFactory.prototype.createDiPlane = function(semantic) { argument
48091 bpmnElement: semantic
48904 ElementFactory.prototype._getDefaultSize = function(semantic) { argument
48906 if (is$1(semantic, 'bpmn:SubProcess')) {
48908 if (isExpanded(semantic)) {
48915 if (is$1(semantic, 'bpmn:Task')) {
48919 if (is$1(semantic, 'bpmn:Gateway')) {
48923 if (is$1(semantic, 'bpmn:Event')) {
48927 if (is$1(semantic, 'bpmn:Participant')) {
48928 if (isExpanded(semantic)) {
48935 if (is$1(semantic, 'bpmn:Lane')) {
48939 if (is$1(semantic, 'bpmn:DataObjectReference')) {
48943 if (is$1(semantic, 'bpmn:DataStoreReference')) {
48947 if (is$1(semantic, 'bpmn:TextAnnotation')) {
48951 if (is$1(semantic, 'bpmn:Group')) {