Package omero :: Package gateway :: Class _InstrumentWrapper
[hide private]
[frames] | no frames]

Class _InstrumentWrapper

source code


omero_model_InstrumentI class wrapper extends BlitzObjectWrapper.

Instance Methods [hide private]
 
__bstrap__(self)
Initialisation method which is implemented by subclasses to set their class variables etc.
source code
omero.model.Microscope
getMicroscope(self)
Returns the microscope component of the Instrument.
source code
DetectorWrapper list
getDetectors(self)
Gets the Instrument detectors.
source code
ObjectiveWrapper list
getObjectives(self)
Gets the Instrument Objectives.
source code
FilterWrapper list
getFilters(self)
Gets the Instrument Filters.
source code
DichroicWrapper list
getDichroics(self)
Gets the Instrument Dichroics.
source code
FilterSetWrapper list
getFilterSets(self)
Gets the Instrument FilterSets.
source code
OTFWrapper list
getOTFs(self)
Gets the Instrument OTFs.
source code
LightSourceWrapper list
getLightSources(self)
Gets the Instrument LightSources.
source code
 
simpleMarshal(self)
Creates a dict representation of this object.
source code

Inherited from BlitzObjectWrapper: __eq__, __getattr__, __init__, __loadedHotSwap__, __prepare__, __repr__, canDelete, canOwnerWrite, canWrite, countChildren, countChildren_cached, creationEventDate, findChildByName, getAncestry, getAnnotation, getChildLinks, getDate, getDescription, getDetails, getId, getName, getOwner, getOwnerFullName, getOwnerOmeName, getParent, getParentLinks, isEditable, isLeaded, isOwned, isPrivate, isPublic, isReadOnly, isShared, linkAnnotation, listAnnotations, listChildren, listOrphanedAnnotations, listParents, removeAnnotations, save, saveAs, setDescription, setName, unlinkAnnotations, updateEventDate

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]

Inherited from BlitzObjectWrapper: LINK_PARENT

Class Variables [hide private]
  _attrs = 'microscope|MicroscopeWrapper',

Inherited from BlitzObjectWrapper: CHILD_WRAPPER_CLASS, LINK_CHILD, LINK_CLASS, OMERO_CLASS, PARENT_WRAPPER_CLASS

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__bstrap__(self)

source code 

Initialisation method which is implemented by subclasses to set their class variables etc.

Overrides: BlitzObjectWrapper.__bstrap__
(inherited documentation)

getMicroscope(self)

source code 

Returns the microscope component of the Instrument.

Returns: omero.model.Microscope
Microscope

getDetectors(self)

source code 

Gets the Instrument detectors.

Returns: DetectorWrapper list
List of Detectors

getObjectives(self)

source code 

Gets the Instrument Objectives.

Returns: ObjectiveWrapper list
List of Objectives

getFilters(self)

source code 

Gets the Instrument Filters.

Returns: FilterWrapper list
List of Filters

getDichroics(self)

source code 

Gets the Instrument Dichroics.

Returns: DichroicWrapper list
List of Dichroics

getFilterSets(self)

source code 

Gets the Instrument FilterSets.

Returns: FilterSetWrapper list
List of FilterSets

getOTFs(self)

source code 

Gets the Instrument OTFs.

Returns: OTFWrapper list
List of OTFs

getLightSources(self)

source code 

Gets the Instrument LightSources.

Returns: LightSourceWrapper list
List of LightSources

simpleMarshal(self)

source code 

Creates a dict representation of this object.
E.g. for Image: {'description': '', 'author': 'Will Moore', 'date': 1286332557.0,
    'type': 'Image', 'id': 3841L, 'name': 'cb_4_w500_t03_z01.tif'}

@param xtra:        A dict of extra keys to include. E.g. 'childCount'
@type xtra:         Dict
@param parents:     If True, include a list of ancestors (in simpleMarshal form) as 'parents'
@type parents:      Boolean
@return:            A dict representation of this object
@rtype:             Dict

Overrides: BlitzObjectWrapper.simpleMarshal
(inherited documentation)