Package omero :: Package plugins :: Module import :: Class ImportControl
[hide private]
[frames] | no frames]

Class ImportControl

source code


Instance Methods [hide private]
 
__init__(self, ctx, dir=OMERODIR) source code
 
_run(self, args=[]) source code
 
help(self, args=None) source code
 
__call__(self, *args)
Main dispatch method for a control instance.
source code
Method Details [hide private]

__init__(self, ctx, dir=OMERODIR)
(Constructor)

source code 
Overrides: cli.BaseControl.__init__

help(self, args=None)

source code 
Overrides: cli.BaseControl.help

__call__(self, *args)
(Call operator)

source code 

Main dispatch method for a control instance. The default implementation assumes that the *args consists of either no elements or exactly one list of strings ==> (["str"],)

If no args are present, _noargs is called. Subclasses may want to read from stdin or drop into a shell from _noargs().

Otherwise, the rest of the arguments are passed to the method named by the first argument, if _likes() returns True.

Overrides: cli.BaseControl.__call__
(inherited documentation)