Exemplo n.º 1
0
Arquivo: id.py Projeto: nrichart/kll
 def __init__(self, uid):
     Id.__init__(self)
     Position.__init__(self)
     PixelModifierList.__init__(self)
     ChannelList.__init__(self)
     self.uid = uid
     self.type = 'Pixel'
Exemplo n.º 2
0
	def __init__( self, uid ):
		Id.__init__( self )
		Position.__init__( self )
		PixelModifierList.__init__( self )
		ChannelList.__init__( self )
		self.uid = uid
		self.type = 'Pixel'
Exemplo n.º 3
0
Arquivo: id.py Projeto: nrichart/kll
    def __init__(self, uid):
        Id.__init__(self)
        Schedule.__init__(self)
        Position.__init__(self)
        self.type = 'ScanCode'
        self.uid = uid

        # This uid is used for any post-processing of the uid
        # The original uid is maintained in case it is needed
        self.updated_uid = None
Exemplo n.º 4
0
    def __init__(self, uid):
        Id.__init__(self)
        Schedule.__init__(self)
        Position.__init__(self)
        self.type = 'ScanCode'
        self.uid = uid

        # By default, interconnect_id of 0
        # Will be set during the merge process if it needs to change
        self.interconnect_id = 0
Exemplo n.º 5
0
	def __init__( self, uid ):
		Id.__init__( self )
		Schedule.__init__( self )
		Position.__init__( self )
		self.type = 'ScanCode'
		self.uid = uid

		# By default, interconnect_id of 0
		# Will be set during the merge process if it needs to change
		self.interconnect_id = 0