Package pybaz :: Class ArchiveItem
[frames] | no frames]

Class ArchiveItem

source code

     object --+    
              |    
NamespaceObject --+
                  |
                 ArchiveItem
Known Subclasses:
CategoryItem, Setupable

Base class for all archive components classes.

ArchiveItem provides features common to all objects which are
structural components of Archive.



Instance Methods
 
__init__(self, archive, nonarch)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
get_archive(self)
Deprecated.
 
get_fullname(self)
Deprecated Fully qualified name of this namespace object.
 
get_nonarch(self)
Deprecated.

Inherited from NamespaceObject: __eq__, __ne__, __repr__, __str__, exists

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

Properties
  archive
Archive which contains this namespace object.
  fullname
Fully qualfied name of this namespace object.
  nonarch
Non-arch part of this namespace name.

Inherited from object: __class__

Method Details

__init__(self, archive, nonarch)
(Constructor)

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

Overrides: object.__init__
(inherited documentation)

get_archive(self)

 
Deprecated.

Archive which contains this namespace object.

:rtype: `Archive`
:see: `ArchiveItem.archive`

get_fullname(self)

 
Deprecated

Fully qualified name of this namespace object.

:rtype: str
:see: `NamespaceObject.fullname`

Overrides: NamespaceObject.get_fullname
(inherited documentation)

get_nonarch(self)

 
Deprecated.

Non-arch part of this namespace name.

:rtype: str
:see: `ArchiveItem.nonarch`


Property Details

archive


Archive which contains this namespace object.

:type: `Archive`

Get Method:
pybaz.ArchiveItem._get_archive(self)

fullname


Fully qualfied name of this namespace object.

:type: str

Get Method:
pybaz.ArchiveItem._get_fullname(self)

nonarch


Non-arch part of this namespace name.

:type: str

Get Method:
pybaz.ArchiveItem._get_nonarch(self)