Home | Trees | Index | Help |
|
---|
Package Modeling :: Module Model :: Class Model |
|
KeyValueCoding
--+ |object
--+ |XMLCapability
--+ | Model
Method Summary | |
---|---|
Initializes a model. | |
Returns the DB adaptor name. | |
Adds 'anEntity' to the model, and silently returns if 'anEntity' is already registered within the Model. | |
Iterates on entities, entities' attributes and relationships, and self, and caches the result of methods taking only one argument ('self'). | |
Returns the comment field | |
Returns the connection dictionary | |
Returns the whole set of attributes | |
Returns the whole set ('tuple') of entities' name. | |
Returns the entity corresponding to the supplied object, or 'None' if it cannot be found | |
Returns the entity named 'aName' or None if it does not exist. | |
Returns the (DOM) DocumentObject for the receiver. | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
Initializes a model with the supplied xml.dom.node. | |
Checks whether the name is already registered within the model or its ModelSet if it has one. | |
Returns the parent Modeling.ModelSet | |
Returns the Model's name | |
Returns the name of the package that will be used when generating code templates for that model | |
Removes the supplied entity from the registered entities. | |
UNIMPLEMENTED Removes the supplied entity from the registered entities, as well as all related relationships in other registered entities. | |
Saves the model in specified file --xml-formatted | |
Sets the DB adaptor name | |
Sets the comment field | |
Sets the connection dictionary | |
Sets the model's name. | |
Sets the name of the package that will be used when generating code templates for that model | |
Checks whether the supplied object is valid | |
. | |
Sets the parent Modeling.ModelSet | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) | |
Inherited from XMLCapability | |
Returns the node name corresponding to the receiver | |
| |
| |
| |
Inherited from KeyValueCoding | |
See interfaces.KeyValueCoding for details | |
DEPRECATED -- alias for 'takeStoredValueForKey()' | |
DEPRECATED -- alias for takeValueForKey() | |
DEPRECATED -- alias for takeValueForKeyPath() | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details | |
See interfaces.KeyValueCoding for details |
Class Variable Summary | |
---|---|
str |
_adaptorName = ''
|
str |
_comment = ''
|
dict |
_connectionDictionary = {}
|
int |
_is_a_model = 1 |
str |
_packageName = ''
|
Inherited from KeyValueCoding | |
tuple |
__implements__ = (<class Modeling.interfaces.KeyValueCod...
|
Method Details |
---|
__init__(self,
aName='')
Initializes a model. A name must be provided. |
adaptorName(self)Returns the DB adaptor name. It may be None. |
addEntity(self, anEntity)Adds 'anEntity' to the model, and silently returns if 'anEntity' is already registered within the Model. Raises 'ModelError' if the anEntity's name is already used by an other entity in the model or its ModelSet. |
cacheSimpleMethods(self)Iterates on entities, entities' attributes and relationships, and self, and caches the result of methods taking only one argument ('self'). This needs to be enabled by setting the environment variable MDL_ENABLE_SIMPLE_METHOD_CACHE to any non-empty string; you want to leave it disabled when you manipulate models at runtime, for example in a model designer. See: Modeling.utils.cache_simple_methods |
comment(self)Returns the comment field |
connectionDictionary(self)Returns the connection dictionary |
entities(self)Returns the whole set of attributes |
entitiesNames(self)Returns the whole set ('tuple') of entities' name. |
entityForObject(self, aDatabaseObject)Returns the entity corresponding to the supplied object, or 'None' if it cannot be found |
entityNamed(self, aName)Returns the entity named 'aName' or None if it does not exist. |
getXMLDOM(self, doc=None, parentNode=None, encoding='iso-8859-1')Returns the (DOM) DocumentObject for the receiver. Parameters 'doc' and 'parentDoc' should be both omitted or supplied. If they are omitted, a new DocumentObject is created. If they are supplied, elements are added to the parentNode. Returns: the (possibly new) DocumentObject.
|
handleAssignementForUnboundKey(self, value, key)See interfaces.KeyValueCoding for details
|
handleTakeStoredValueForUnboundKey(self, value, key)See interfaces.KeyValueCoding for details
|
initWithXMLDOMNode(self, aNode, encoding='iso-8859-1')Initializes a model with the supplied xml.dom.node. A XMLutils.XMLImportError is raised if the model is not empty, i.e. if it already holds some entities |
isEntityNameDeclaredInNamespace(self, aName)Checks whether the name is already registered within the model or its ModelSet if it has one. |
modelSet(self)Returns the parent Modeling.ModelSet |
name(self)Returns the Model's name |
packageName(self)Returns the name of the package that will be used when generating code templates for that model |
removeEntity(self, anEntity)Removes the supplied entity from the registered entities. Parameter 'anEntity' can be either an 'Entity' instance or a subentity's name. No referential checks are done. Raises 'ModelError' if 'anEntity' cannot be found. |
removeEntityAndReferences(self, anEntity)UNIMPLEMENTED Removes the supplied entity from the registered entities, as well as all related relationships in other registered entities. |
saveModelAsXMLFile(self, xmlFilePath, encoding='iso-8859-1')Saves the model in specified file --xml-formatted |
setAdaptorName(self, adaptorName)Sets the DB adaptor name |
setComment(self, aComment)Sets the comment field |
setConnectionDictionary(self, aConnectionDictionary)Sets the connection dictionary |
setName(self, aName)Sets the model's name. Raises if invalid |
setPackageName(self, packageName)Sets the name of the package that will be used when generating code templates for that model |
validateObject(self, aModel)Checks whether the supplied object is valid |
xmlAttributesDict(self). |
_setModelSet(self, aModelSet)Sets the parent Modeling.ModelSet |
Class Variable Details |
---|
_adaptorName
|
_comment
|
_connectionDictionary
|
_is_a_model
|
_packageName
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Mar 4 13:36:21 2006 | http://epydoc.sf.net |