Package schrodinger :: Module surface :: Class SurfaceDict
[hide private]
[frames] | no frames]

Class SurfaceDict

       object --+            
                |            
    _abcoll.Sized --+        
                    |        
       object --+   |        
                |   |        
 _abcoll.Iterable --+        
                    |        
       object --+   |        
                |   |        
_abcoll.Container --+        
                    |        
      _abcoll.Mapping --+    
                        |    
   _abcoll.MutableMapping --+
                            |
                           SurfaceDict

A dictionary of {surface name: surface object} for the specified entry ID. Note that surfaces may not be created by assignment to a dictionary value. Use schrodinger.project.ProjectRow.newMolecularSurface instead. SurfaceDict objects are typically accessed via schrodinger.project.ProjectRow.surface.

Nested Classes [hide private]

Inherited from _abcoll.Sized: __metaclass__

Instance Methods [hide private]
 
__init__(self, proj_handle, eid)
x.__init__(...) initializes x; see help(type(x)) for signature
 
__len__(self)
 
__getitem__(self, name)
 
__setitem__(self, key, value)
 
__delitem__(self, name)
 
__iter__(self)

Inherited from _abcoll.MutableMapping: clear, pop, popitem, setdefault, update

Inherited from _abcoll.Mapping: __contains__, __eq__, __ne__, get, items, iteritems, iterkeys, itervalues, keys, values

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

Class Methods [hide private]

Inherited from _abcoll.Sized: __subclasshook__

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
  _abc_cache = <_weakrefset.WeakSet object at 0xd863910>
  _abc_negative_cache = <_weakrefset.WeakSet object at 0xd863990>
  _abc_registry = <_weakrefset.WeakSet object at 0xd8632d0>

Inherited from _abcoll.Mapping: __hash__

Inherited from _abcoll.Mapping (private): _abc_negative_cache_version

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, proj_handle, eid)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • proj_handle (int) - A handle to the project
  • eid (str) - The entry ID
Overrides: object.__init__

__len__(self)
(Length operator)

 
Overrides: _abcoll.Sized.__len__

__getitem__(self, name)
(Indexing operator)

 
Overrides: _abcoll.Mapping.__getitem__

__setitem__(self, key, value)
(Index assignment operator)

 
Overrides: _abcoll.MutableMapping.__setitem__

__delitem__(self, name)
(Index deletion operator)

 
Overrides: _abcoll.MutableMapping.__delitem__

__iter__(self)

 
Overrides: _abcoll.Iterable.__iter__