class twisted.python.components._ProxiedClassMethod: (source)
A proxied class method.
| Instance Variable | methodName | the name of the method which this should invoke when called. |
| Instance Variable | __name__ | The name of the method being proxied (the same as methodName). |
| Instance Variable | originalAttribute | name of the attribute of the proxy where the original object is stored. |
| Method | __init__ | Undocumented |
| Method | __call__ | Invoke the specified methodName method of the original attribute for proxyForInterface. |
str)
Invoke the specified methodName method of the original attribute for proxyForInterface.
| Parameters | oself | an instance of a proxyForInterface object. |
| args | Undocumented | |
| kw | Undocumented | |
| Returns | the result of the underlying method. | |