class MyComponent1():
    
    def __init__(self):
        """
        Creates a new instance of the component.
        """
        self._status = "Created"
        print("MyComponent1 has been created.")
    
    def myTask(self):
        print("task executed")