NodeList interface - Provides the abstraction of an ordered
collection of nodes. Python extensions: can use sequence-style len , getitem , and
for..in constructs.
Methods
|
|
__getitem__
__getslice__
__init__
_get_Length
getLength
item
|
|
__getitem__
|
__getitem__ (
self,
index,
type=type,
st=type( '' ),
)
|
|
__getslice__
|
__getslice__ (
self,
i,
j,
)
|
|
__init__
|
__init__ ( self, list=None )
|
|
_get_Length
|
_get_Length ( self )
|
|
getLength
|
getLength ( self )
The length of the NodeList
|
|
item
|
item ( self, index )
Returns the index-th item in the collection
|
|