Source code for titania.common.interface_tab

from abc import ABC, abstractmethod

[docs]class TitaniaTabInterface(ABC): def __init__(self): """ Interface for creating any tab in titania. """
[docs] @abstractmethod def get_title(self) -> str: """ A getter for the tab name """ pass
[docs] @abstractmethod def initiate(self) -> None: """ This method initiates the tab. """ pass
[docs]class WebTab: """ Used to implement Web view """ pass