com.vaadin.flow.component.internal.
Class ComponentTracker
Tracks the location in source code where components were instantiated.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Represents a location in the source code.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentTracker.Location
findAttach
(Component component) Finds the location where the given component instance was attached to a parent.
static ComponentTracker.Location
findCreate
(Component component) Finds the location where the given component instance was created.
static void
trackAttach
(Component component) Tracks the location where the component was attached.
static void
trackCreate
(Component component) Tracks the location where the component was created.
-
Constructor Details
-
ComponentTracker
public ComponentTracker()
-
-
Method Details
-
findCreate
Finds the location where the given component instance was created.
Parameters:
component
- the component to findReturns:
the location where the component was created
-
trackCreate
Tracks the location where the component was created. This should be called from the Component constructor so that the creation location can be found from the current stacktrace.
Parameters:
component
- the component to track -
findAttach
Finds the location where the given component instance was attached to a parent.
Parameters:
component
- the component to findReturns:
the location where the component was attached
-
trackAttach
Tracks the location where the component was attached. This should be called from the Component attach logic so that the creation location can be found from the current stacktrace.
Parameters:
component
- the component to track
-