python - How to use method load() in loadable components using Java -


I have worked with loadable components using python, you can type one of the following load methods:

  def load (self): self._parent_page.get () self._parent_page.click_this_button ()  

Where the click_this_button () method defined in parent_page class

How can I use the same syntax in Java? In Java I can only write parentPage.get (). Is there a way to reach the methods defined in parents in Python?

Thanks


Comments

Popular posts from this blog

c# - SignalR: "Protocol error: Unknown transport." when navigating to hub -

class - Kivy: how to instantiate a dynamic classes in python -

python - mayavi mapping a discrete colorbar on a surface -