Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@

@startuml

package "safety_software_seooc_example" {
interface "InternalInterface" as InternalInterface <<interface>>{
{abstract} GetData(BindingType binding): Data*
namespace safety_software_seooc_example {
namespace component_example {
interface "InternalInterface" as InternalInterface <<interface>>{
{abstract} GetData(BindingType binding): Data*
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ package "Safety Software SEooC Example" as safety_software_seooc_example <<SEooC
component "ComponentExample" as component_example <<component>> {
component "Unit 1" as unit_1 <<unit>>
component "Unit 2" as unit_2 <<unit>>

interface "InternalInterface" as InternalInterface
unit_1 -l-( InternalInterface
unit_2 )-r- InternalInterface
}
interface "InternalInterface" as InternalInterface
unit_1 -( InternalInterface
unit_2 )- InternalInterface
}

package "SampleLibraryAPI" as SampleLibraryAPI
Expand Down
Loading