def createDimensions(self):
        # Creates the dimensions node in the xml tree. It adds the
        # objectClass node as a child of the dimensions node. Finally
        # a "name" node is added as a child of the dimensions node.

        # This overrides the one in the base class because the
        # positions are not needed.

        XMLMessageArray.createDimensions(self)
        self.setVacuumIDNode()
        self.setTimeNode()
예제 #2
0
 def __init__(self,A=None) :
     XMLMessageArray.__init__(self,A)
     self.setMyInformationType(self.MESSAGE_WETNESS_SENSOR_PLANNER)
예제 #3
0
 def __init__(self,A=None) :
     XMLMessageArray.__init__(self,A)
     self.setMyInformationType(self.MESSAGE_WORLD_STATUS)
    def __init__(self,time=0.0,A=None) :
        XMLMessageArray.__init__(self,A)
	self.setMyInformationType(self.MESSAGE_WORLD_VACUUM_CURRENT_TIME)
        self.vacuumID = -1
        self.setTime(time)