Ejemplo n.º 1
0
 def __parse_base_layout(self):
     # Parse the library layout.
     self.add_debug('Obtain base layout ...')
     handler = LibraryBaseLayoutParserHandler(self.stream, parent=self)
     self.__base_layout = handler.get_result()
     if self.__base_layout is None:
         msg = 'Error when trying to obtain library base layout.'
         self.add_error(msg)
Ejemplo n.º 2
0
 def __parse_base_layout(self):
     # Parse the library layout.
     self.add_debug("Obtain base layout ...")
     handler = LibraryBaseLayoutParserHandler(self.stream, parent=self)
     self.__base_layout = handler.get_result()
     if self.__base_layout is None:
         msg = "Error when trying to obtain library base layout."
         self.add_error(msg)
Ejemplo n.º 3
0
 def __parse_base_layout(self):
     """
     The layout contains the positions for the library samples.
     """
     self.add_debug('Obtain base layout ...')
     handler = LibraryBaseLayoutParserHandler(self.stream, parent=self)
     self.__base_layout = handler.get_result()
     if self.__base_layout is None:
         msg = 'Error when trying to obtain library base layout.'
         self.add_error(msg)