Skip to content

Commit

Permalink
feat(model): Add required and provided interfaces to ComponentPort
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuestengecko committed Aug 30, 2024
1 parent 264b3b7 commit 36233b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions capellambse/model/crosslayer/fa.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,12 @@ class ComponentPort(c.GenericElement):
)
owner = c.ParentAccessor(c.GenericElement)
exchanges: c.Accessor
provided_interfaces = c.AttrProxyAccessor(
c.GenericElement, "providedInterfaces", aslist=c.ElementList
)
required_interfaces = c.AttrProxyAccessor(
c.GenericElement, "requiredInterfaces", aslist=c.ElementList
)


@c.xtype_handler(None)
Expand Down

0 comments on commit 36233b0

Please sign in to comment.