AccessEngine :: AEState :: Setting :: StringSetting :: Class StringSetting
[hide private]
[frames] | no frames]

Class StringSetting

source code

object --+    
         |    
   Setting --+
             |
            StringSetting

Represents a string setting.

Instance Methods [hide private]
 
_setValue(self, val)
Stores the given value as a string.
source code

Inherited from Setting: __init__, addObserver, clearObservers, copy, removeObserver, restore, save, serialize, unserialize, update

Inherited from Setting (private): _getValue, _notify

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

Class Variables [hide private]
  value = property(Setting._getValue, _setValue)
Instance Variables [hide private]

Inherited from Setting: default, description, label, name, persist, state

Inherited from Setting (private): _cached, _observers, _value

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

_setValue(self, val)

source code 
Stores the given value as a string.
Parameters:
  • val (string) - New value
Raises:
  • TypeError - When the value cannot be converted to a string
Overrides: Setting._setValue