CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
python.Node.LeafNode Class Reference
Inheritance diagram for python.Node.LeafNode:
python.Node.Node

Public Member Functions

def __init__
 
def __repr__
 
- Public Member Functions inherited from python.Node.Node
def __getattr__
 
def __init__
 
def __repr__
 
def __setattr__
 
def empty
 

Public Attributes

 tagname
 

Detailed Description

The leaf node

Definition at line 29 of file Node.py.

Constructor & Destructor Documentation

def python.Node.LeafNode.__init__ (   self)
__init__

Definition at line 32 of file Node.py.

References python.Node.Node.__setattr__().

32 
33  def __init__( self ):
34  """__init__
35  """
36  super(Node,self).__init__()
37  super(Node,self).__setattr__( 'tagid',0 )
38  self.__dict__.setdefault('tagname','')
39  #self.__dict__.setdefault('tagid',0)
40  self.__dict__.setdefault('pfn','')
41  self.__dict__.setdefault('recordname','')
42  self.__dict__.setdefault('objectname','')
self.__dict__.setdefault('labelname','')
def __setattr__
Definition: Node.py:17

Member Function Documentation

def python.Node.LeafNode.__repr__ (   self)
__repr__

Definition at line 43 of file Node.py.

43 
44  def __repr__( self ):
45  """__repr__
46  """
47  if self.tagname=='':
48  return ''
return self.__dict__.__repr__()

Member Data Documentation

python.Node.LeafNode.tagname

Definition at line 46 of file Node.py.