Skip to content

Commit

Permalink
feat: Add LAB and SAB support for PhysicalLink interface context
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Oct 15, 2024
1 parent 02fd3ae commit 0964b6c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions capellambse_context_diagrams/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
function), other elements use a white background color to distinguish
them.
"""

from __future__ import annotations

import collections.abc as cabc
Expand Down Expand Up @@ -199,6 +200,10 @@ def register_interface_context() -> None:
ATTR_NAME,
context.InterfaceContextAccessor(
{
sa.SystemComponentPkg: DiagramType.SAB.value,
sa.SystemComponent: DiagramType.SAB.value,
la.LogicalComponentPkg: DiagramType.LAB.value,
la.LogicalComponent: DiagramType.LAB.value,
pa.PhysicalComponentPkg: DiagramType.PAB.value,
pa.PhysicalComponent: DiagramType.PAB.value,
},
Expand Down

0 comments on commit 0964b6c

Please sign in to comment.