Is it possible to access environment class methods from driver class or any other sub components?

Hi,
If I want to use some methods of environment class in driver class,is it possible? If yes,can anyone show me how?
Thanks!

In reply to Salman94:

No. You don’t want to access any environment class methods from a driver. A UVC is designed to be a reusable component and not dependent on any external components. With this design goal, there should be no references from the driver to anything external of the UVC.

In reply to Salman94:

You should put any common methods in a common UVC package which can be imported by any component.