Package application :: Module schema :: Class ns
[hide private]
[frames] | no frames]

Class ns

source code

object --+
         |
        ns

Shortcut namespace for referring to classes and instances in a parcel

Example:
   current = schema.ns("osaf.current", repo_view)
   me = current.Contact.item
The ``ns`` object acts almost like an XML namespace in parcel.xml, only in Python. The main difference is that names defined in the module given will take precedence over items in the corresponding parcel. See schema_api.txt for a more detailed explanation

Instance Methods [hide private]
 
__init__(self, name, view)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
fwdRef(self, cls, name) source code
 
__getattr__(self, name) source code
 
_makeTemplates(self) source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name, view)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)