interface documentation

class IMultipleMethods(Interface): (source)

View In Hierarchy

An interface with multiple methods.

Method methodOne The first method. Should return 1.
Method methodTwo The second method. Should return 2.
def methodOne(): (source)

The first method. Should return 1.

def methodTwo(): (source)

The second method. Should return 2.