interface documentation

class IMultipleMethods(Interface):

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():

The first method. Should return 1.

def methodTwo():

The second method. Should return 2.