Component class abstract
The base class for any component in ROHD-VF.
A Component is an object that has a static position in the hierarchy of the testbench. Components are constructed before the test starts running and stay in place throughout the duration of the test.
- Inheritance
-
- Object
- ROHDVFObject
- Component
- Implementers
Constructors
Properties
-
components
→ UnmodifiableListView<
Component> -
A List of all children Components.
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- logger → Logger
-
A Logger for messages related to the test or testbench.
latefinalinherited
- name → String
-
A name for this instance of the Component.
final
- parent → Component?
-
The Component which constructed and contains this Component.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
build(
) → void - Performs additional build-related activities required before run.
-
check(
) → void - Performs additional checks at the end of the simulation.
-
fullName(
) → String -
A descriptive name including the full hierarchical path of
this Component.
override
-
hierarchy(
) → List< Component> - Returns a List of Components representing the full hierarchy of this Component, with the top-most parent at index 0 and this as the last element of the List.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
run(
Phase phase) → Future< void> - Executes this Component's activities related to running the test.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited