RohdBridgeModuleExtensions extension
Extension methods for Module to provide additional functionality related to ROHD Bridge.
- on
Properties
- hierarchicalName → String
-
Available on Module, provided by the RohdBridgeModuleExtensions extension
Provides a full hierarchical name based on hierarchy.no setter
Methods
-
findSubModule(
Pattern pattern) → Module? -
Available on Module, provided by the RohdBridgeModuleExtensions extension
Searches for one sub-module matchingpattern
in the same way as findSubModules. If more than one module is found, an exception is thrown. -
findSubModules(
Pattern pattern) → Iterable< Module> -
Available on Module, provided by the RohdBridgeModuleExtensions extension
Searches for sub-modules by instance namepattern
within this Module. The String representation being matched against uses/
as a separator for hierarchy. -
getHierarchyDownTo(
Module instance) → List< Module> ? -
Available on Module, provided by the RohdBridgeModuleExtensions extension
Returns a list of instances between calling modulethis
and the providedinstance
, where the first element isthis
and the last element isinstance
.