Module Spiff_Guard :: Class Resource

Class Resource



object --+    
         |    
  DBObject --+
             |
            Resource

Instance Methods
 
__init__(self, name, handle=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
is_group(self)
 
set_n_children(self, n_children)
 
get_n_children(self)
 
set_attribute(self, name, value)
 
get_attribute(self, name)
 
remove_attribute(self, name)
 
set_attribute_list(self, list)
 
get_attribute_list(self)

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

    Inherited from DBObject
 
get_handle(self)
 
get_id(self)
 
get_name(self)
 
handle(self, handle)
 
id(self, id)
 
name(self, name)
 
set_handle(self, handle)
 
set_id(self, id)
 
set_name(self, name)
Properties

Inherited from object: __class__

Method Details

__init__(self, name, handle=None)
(Constructor)

 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: DBObject.__init__