Beispiel #1
0
 def _check_input(self):
     """
     Checks the initialisation values.
     """
     SerialWriterExecutorTool._check_input(self)
     if self.stream is None:
         msg = 'The stream must not be None!'
         self.add_error(msg)
Beispiel #2
0
 def _check_input(self):
     """
     Checks the initialisation values.
     """
     SerialWriterExecutorTool._check_input(self)
     if self.stream is None:
         msg = 'The stream must not be None!'
         self.add_error(msg)
Beispiel #3
0
 def _check_input(self):
     """
     Checks the initialisation values.
     """
     SerialWriterExecutorTool._check_input(self)
     if self._check_input_class("entity", self.entity, self.ENTITY_CLS):
         if self.ENTITY_CLS == IsoJob and len(self.entity.isos) < 1:
             msg = "There are no ISOs in this ISO job!"
             self.add_error(msg)
Beispiel #4
0
 def _check_input(self):
     """
     Checks the initialisation values.
     """
     SerialWriterExecutorTool._check_input(self)
     if self._check_input_class('entity', self.entity, self.ENTITY_CLS):
         if self.ENTITY_CLS == IsoJob and len(self.entity.isos) < 1:
             msg = 'There are no ISOs in this ISO job!'
             self.add_error(msg)
Beispiel #5
0
 def _check_input(self):
     """
     Checks whether all initialisation values are valid.
     """
     SerialWriterExecutorTool._check_input(self)
     self._check_input_class('experiment', self.experiment, Experiment)
Beispiel #6
0
 def _check_input(self):
     """
     Checks whether all initialisation values are valid.
     """
     SerialWriterExecutorTool._check_input(self)
     self._check_input_class('experiment', self.experiment, Experiment)