Skip to content
Open
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
2 changes: 2 additions & 0 deletions bazel/rules/rules_score/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ sphinx_module(
"docs/**/*.rst",
"docs/**/*.puml",
"docs/**/*.md",
"docs/**/*.svg",
"docs/**/*.png",
],
allow_empty = True,
) + [
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace safety_software_seooc_example {
namespace component_example {
interface "InternalInterface" as InternalInterface <<interface>>{
{abstract} GetData(BindingType binding): Data*
{abstract} GetData()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@

@startuml SeoocExample_PublicApi

package "SampleLibraryAPI" as SampleLibraryAPI {
interface "GetNumber" as GetNumber
' interface "SetNumber" as SetNumber
namespace safety_software_seooc_example {
interface "SampleLibraryAPI" as SampleLibraryAPI {
+ GetNumber()
}
}

@enduml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ package "Safety Software SEooC Example" as safety_software_seooc_example <<SEooC
}
}

package "SampleLibraryAPI" as SampleLibraryAPI
interface "SampleLibraryAPI" as SampleLibraryAPI

component_example --> SampleLibraryAPI
safety_software_seooc_example )-d- SampleLibraryAPI

@enduml
Loading
Loading