private void UpdateIcon() { var multipleIcon = IconFactory.CreateLoopCharacteristic(LoopCharacteristic.Parallel, IconColor); multipleInstanceIcon = new PlacedIcon(multipleIcon, BpmnConstants.PoolNodeMarkerPlacement, BpmnConstants.MarkerSize); }
private void UpdateMultiInstanceIcon() { multiInstanceIcon = IconFactory.CreatePlacedIcon( IconFactory.CreateLoopCharacteristic(LoopCharacteristic.Parallel, IconColor), BpmnConstants.ChoreographyMarkerPlacement, BpmnConstants.MarkerSize); }
private void UpdateCollectionIcon() { collectionIcon = IconFactory.CreatePlacedIcon( IconFactory.CreateLoopCharacteristic(LoopCharacteristic.Parallel, IconColor), BpmnConstants.DataObjectMarkerPlacement, BpmnConstants.MarkerSize); }
private void UpdateLoopIcon() { loopIcon = IconFactory.CreateLoopCharacteristic(LoopCharacteristic, IconColor); }