7 Module implementing a class for reading an XML project debugger properties file. |
7 Module implementing a class for reading an XML project debugger properties file. |
8 """ |
8 """ |
9 |
9 |
10 from .Config import debuggerPropertiesFileFormatVersion |
10 from .Config import debuggerPropertiesFileFormatVersion |
11 from .XMLStreamReaderBase import XMLStreamReaderBase |
11 from .XMLStreamReaderBase import XMLStreamReaderBase |
|
12 |
12 |
13 |
13 class DebuggerPropertiesReader(XMLStreamReaderBase): |
14 class DebuggerPropertiesReader(XMLStreamReaderBase): |
14 """ |
15 """ |
15 Class for reading an XML project debugger properties file. |
16 Class for reading an XML project debugger properties file. |
16 """ |
17 """ |
28 |
29 |
29 self.project = project |
30 self.project = project |
30 |
31 |
31 self.version = "" |
32 self.version = "" |
32 |
33 |
33 def readXML(self, quiet = False): |
34 def readXML(self, quiet=False): |
34 """ |
35 """ |
35 Public method to read and parse the XML document. |
36 Public method to read and parse the XML document. |
36 |
37 |
37 @param quiet flag indicating quiet operations. |
38 @param quiet flag indicating quiet operations. |
38 If this flag is true, no errors are reported. |
39 If this flag is true, no errors are reported. |