eric6/Documentation/Source/eric6.E5XML.DebuggerPropertiesReader.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
equal deleted inserted replaced
7272:1779dc278077 7273:391d6b7b1eff
16 16
17 a { color: #BA6D36; } 17 a { color: #BA6D36; }
18 18
19 </style> 19 </style>
20 </head> 20 </head>
21 <body><a NAME="top" ID="top"></a> 21 <body>
22 <a NAME="top" ID="top"></a>
22 <h1>eric6.E5XML.DebuggerPropertiesReader</h1> 23 <h1>eric6.E5XML.DebuggerPropertiesReader</h1>
24
23 <p> 25 <p>
24 Module implementing a class for reading an XML project debugger properties 26 Module implementing a class for reading an XML project debugger properties
25 file. 27 file.
26 </p> 28 </p>
27 <h3>Global Attributes</h3> 29 <h3>Global Attributes</h3>
30
28 <table> 31 <table>
29 <tr><td>None</td></tr> 32 <tr><td>None</td></tr>
30 </table> 33 </table>
31 <h3>Classes</h3> 34 <h3>Classes</h3>
35
32 <table> 36 <table>
37
33 <tr> 38 <tr>
34 <td><a href="#DebuggerPropertiesReader">DebuggerPropertiesReader</a></td> 39 <td><a href="#DebuggerPropertiesReader">DebuggerPropertiesReader</a></td>
35 <td>Class for reading an XML project debugger properties file.</td> 40 <td>Class for reading an XML project debugger properties file.</td>
36 </tr> 41 </tr>
37 </table> 42 </table>
38 <h3>Functions</h3> 43 <h3>Functions</h3>
44
39 <table> 45 <table>
40 <tr><td>None</td></tr> 46 <tr><td>None</td></tr>
41 </table> 47 </table>
42 <hr /><hr /> 48 <hr />
49 <hr />
43 <a NAME="DebuggerPropertiesReader" ID="DebuggerPropertiesReader"></a> 50 <a NAME="DebuggerPropertiesReader" ID="DebuggerPropertiesReader"></a>
44 <h2>DebuggerPropertiesReader</h2> 51 <h2>DebuggerPropertiesReader</h2>
52
45 <p> 53 <p>
46 Class for reading an XML project debugger properties file. 54 Class for reading an XML project debugger properties file.
47 </p> 55 </p>
48 <h3>Derived from</h3> 56 <h3>Derived from</h3>
49 XMLStreamReaderBase 57 XMLStreamReaderBase
50 <h3>Class Attributes</h3> 58 <h3>Class Attributes</h3>
59
51 <table> 60 <table>
52 <tr><td>supportedVersions</td></tr> 61 <tr><td>supportedVersions</td></tr>
53 </table> 62 </table>
54 <h3>Class Methods</h3> 63 <h3>Class Methods</h3>
64
55 <table> 65 <table>
56 <tr><td>None</td></tr> 66 <tr><td>None</td></tr>
57 </table> 67 </table>
58 <h3>Methods</h3> 68 <h3>Methods</h3>
69
59 <table> 70 <table>
71
60 <tr> 72 <tr>
61 <td><a href="#DebuggerPropertiesReader.__init__">DebuggerPropertiesReader</a></td> 73 <td><a href="#DebuggerPropertiesReader.__init__">DebuggerPropertiesReader</a></td>
62 <td>Constructor</td> 74 <td>Constructor</td>
63 </tr><tr> 75 </tr>
76 <tr>
64 <td><a href="#DebuggerPropertiesReader.__readPathTranslation">__readPathTranslation</a></td> 77 <td><a href="#DebuggerPropertiesReader.__readPathTranslation">__readPathTranslation</a></td>
65 <td>Private method to read the path translation info.</td> 78 <td>Private method to read the path translation info.</td>
66 </tr><tr> 79 </tr>
80 <tr>
67 <td><a href="#DebuggerPropertiesReader.__readRemoteDebugger">__readRemoteDebugger</a></td> 81 <td><a href="#DebuggerPropertiesReader.__readRemoteDebugger">__readRemoteDebugger</a></td>
68 <td>Private method to read the remote debugger info.</td> 82 <td>Private method to read the remote debugger info.</td>
69 </tr><tr> 83 </tr>
84 <tr>
70 <td><a href="#DebuggerPropertiesReader.readXML">readXML</a></td> 85 <td><a href="#DebuggerPropertiesReader.readXML">readXML</a></td>
71 <td>Public method to read and parse the XML document.</td> 86 <td>Public method to read and parse the XML document.</td>
72 </tr> 87 </tr>
73 </table> 88 </table>
74 <h3>Static Methods</h3> 89 <h3>Static Methods</h3>
90
75 <table> 91 <table>
76 <tr><td>None</td></tr> 92 <tr><td>None</td></tr>
77 </table> 93 </table>
94
78 <a NAME="DebuggerPropertiesReader.__init__" ID="DebuggerPropertiesReader.__init__"></a> 95 <a NAME="DebuggerPropertiesReader.__init__" ID="DebuggerPropertiesReader.__init__"></a>
79 <h4>DebuggerPropertiesReader (Constructor)</h4> 96 <h4>DebuggerPropertiesReader (Constructor)</h4>
80 <b>DebuggerPropertiesReader</b>(<i>device, project</i>) 97 <b>DebuggerPropertiesReader</b>(<i>device, project</i>)
98
81 <p> 99 <p>
82 Constructor 100 Constructor
83 </p><dl> 101 </p>
102 <dl>
103
84 <dt><i>device</i></dt> 104 <dt><i>device</i></dt>
85 <dd> 105 <dd>
86 reference to the I/O device to read from (QIODevice) 106 reference to the I/O device to read from (QIODevice)
87 </dd><dt><i>project</i></dt> 107 </dd>
108 <dt><i>project</i></dt>
88 <dd> 109 <dd>
89 Reference to the project object to store the 110 Reference to the project object to store the
90 information into. 111 information into.
91 </dd> 112 </dd>
92 </dl><a NAME="DebuggerPropertiesReader.__readPathTranslation" ID="DebuggerPropertiesReader.__readPathTranslation"></a> 113 </dl>
114 <a NAME="DebuggerPropertiesReader.__readPathTranslation" ID="DebuggerPropertiesReader.__readPathTranslation"></a>
93 <h4>DebuggerPropertiesReader.__readPathTranslation</h4> 115 <h4>DebuggerPropertiesReader.__readPathTranslation</h4>
94 <b>__readPathTranslation</b>(<i></i>) 116 <b>__readPathTranslation</b>(<i></i>)
117
95 <p> 118 <p>
96 Private method to read the path translation info. 119 Private method to read the path translation info.
97 </p><a NAME="DebuggerPropertiesReader.__readRemoteDebugger" ID="DebuggerPropertiesReader.__readRemoteDebugger"></a> 120 </p>
121 <a NAME="DebuggerPropertiesReader.__readRemoteDebugger" ID="DebuggerPropertiesReader.__readRemoteDebugger"></a>
98 <h4>DebuggerPropertiesReader.__readRemoteDebugger</h4> 122 <h4>DebuggerPropertiesReader.__readRemoteDebugger</h4>
99 <b>__readRemoteDebugger</b>(<i></i>) 123 <b>__readRemoteDebugger</b>(<i></i>)
124
100 <p> 125 <p>
101 Private method to read the remote debugger info. 126 Private method to read the remote debugger info.
102 </p><a NAME="DebuggerPropertiesReader.readXML" ID="DebuggerPropertiesReader.readXML"></a> 127 </p>
128 <a NAME="DebuggerPropertiesReader.readXML" ID="DebuggerPropertiesReader.readXML"></a>
103 <h4>DebuggerPropertiesReader.readXML</h4> 129 <h4>DebuggerPropertiesReader.readXML</h4>
104 <b>readXML</b>(<i>quiet=False</i>) 130 <b>readXML</b>(<i>quiet=False</i>)
131
105 <p> 132 <p>
106 Public method to read and parse the XML document. 133 Public method to read and parse the XML document.
107 </p><dl> 134 </p>
135 <dl>
136
108 <dt><i>quiet</i></dt> 137 <dt><i>quiet</i></dt>
109 <dd> 138 <dd>
110 flag indicating quiet operations. 139 flag indicating quiet operations.
111 If this flag is true, no errors are reported. 140 If this flag is true, no errors are reported.
112 </dd> 141 </dd>

eric ide

mercurial