10676:d1479a4f1426 | 10677:6ee2e475490c |
---|---|
109 </table> | 109 </table> |
110 | 110 |
111 | 111 |
112 <a NAME="Attribute.__init__" ID="Attribute.__init__"></a> | 112 <a NAME="Attribute.__init__" ID="Attribute.__init__"></a> |
113 <h4>Attribute (Constructor)</h4> | 113 <h4>Attribute (Constructor)</h4> |
114 <b>Attribute</b>(<i>module, name, file, lineno</i>) | 114 <b>Attribute</b>(<i>module, name, file, lineno, col_offset=0</i>) |
115 <p> | 115 <p> |
116 Constructor | 116 Constructor |
117 </p> | 117 </p> |
118 | 118 |
119 <dl> | 119 <dl> |
126 <dd> | 126 <dd> |
127 name of this class | 127 name of this class |
128 </dd> | 128 </dd> |
129 <dt><i>file</i> (str)</dt> | 129 <dt><i>file</i> (str)</dt> |
130 <dd> | 130 <dd> |
131 filename containing this attribute | 131 file name containing this attribute |
132 </dd> | 132 </dd> |
133 <dt><i>lineno</i> (int)</dt> | 133 <dt><i>lineno</i> (int)</dt> |
134 <dd> | 134 <dd> |
135 linenumber of the class definition | 135 line number of the attribute definition |
136 </dd> | |
137 <dt><i>col_offset</i> (int (optional))</dt> | |
138 <dd> | |
139 column number of the attribute definition (defaults to 0) | |
136 </dd> | 140 </dd> |
137 </dl> | 141 </dl> |
138 <div align="right"><a href="#top">Up</a></div> | 142 <div align="right"><a href="#top">Up</a></div> |
139 <hr /> | 143 <hr /> |
140 <hr /> | 144 <hr /> |
170 </table> | 174 </table> |
171 | 175 |
172 | 176 |
173 <a NAME="Class.__init__" ID="Class.__init__"></a> | 177 <a NAME="Class.__init__" ID="Class.__init__"></a> |
174 <h4>Class (Constructor)</h4> | 178 <h4>Class (Constructor)</h4> |
175 <b>Class</b>(<i>module, name, superClasses, file, lineno</i>) | 179 <b>Class</b>(<i>module, name, superClasses, file, lineno, col_offset=0</i>) |
176 <p> | 180 <p> |
177 Constructor | 181 Constructor |
178 </p> | 182 </p> |
179 | 183 |
180 <dl> | 184 <dl> |
191 <dd> | 195 <dd> |
192 list of class names this class is inherited from | 196 list of class names this class is inherited from |
193 </dd> | 197 </dd> |
194 <dt><i>file</i> (str)</dt> | 198 <dt><i>file</i> (str)</dt> |
195 <dd> | 199 <dd> |
196 filename containing this class | 200 file name containing this class |
197 </dd> | 201 </dd> |
198 <dt><i>lineno</i> (int)</dt> | 202 <dt><i>lineno</i> (int)</dt> |
199 <dd> | 203 <dd> |
200 linenumber of the class definition | 204 line number of the class definition |
205 </dd> | |
206 <dt><i>col_offset</i> (int (optional))</dt> | |
207 <dd> | |
208 column number of the class definition (defaults to 0) | |
201 </dd> | 209 </dd> |
202 </dl> | 210 </dl> |
203 <div align="right"><a href="#top">Up</a></div> | 211 <div align="right"><a href="#top">Up</a></div> |
204 <hr /> | 212 <hr /> |
205 <hr /> | 213 <hr /> |
235 </table> | 243 </table> |
236 | 244 |
237 | 245 |
238 <a NAME="Function.__init__" ID="Function.__init__"></a> | 246 <a NAME="Function.__init__" ID="Function.__init__"></a> |
239 <h4>Function (Constructor)</h4> | 247 <h4>Function (Constructor)</h4> |
240 <b>Function</b>(<i>module, name, file, lineno, signature="", separator=", ", modifierType=ClbrBaseClasses.Function.General, annotation="", </i>) | 248 <b>Function</b>(<i>module, name, file, lineno, col_offset=0, signature="", separator=", ", modifierType=ClbrBaseClasses.Function.General, annotation="", </i>) |
241 <p> | 249 <p> |
242 Constructor | 250 Constructor |
243 </p> | 251 </p> |
244 | 252 |
245 <dl> | 253 <dl> |
252 <dd> | 260 <dd> |
253 name of this function | 261 name of this function |
254 </dd> | 262 </dd> |
255 <dt><i>file</i> (str)</dt> | 263 <dt><i>file</i> (str)</dt> |
256 <dd> | 264 <dd> |
257 filename containing this class | 265 file name containing this function |
258 </dd> | 266 </dd> |
259 <dt><i>lineno</i> (int)</dt> | 267 <dt><i>lineno</i> (int)</dt> |
260 <dd> | 268 <dd> |
261 linenumber of the class definition | 269 line number of the function definition |
270 </dd> | |
271 <dt><i>col_offset</i> (int (optional))</dt> | |
272 <dd> | |
273 column number of the function definition (defaults to 0) | |
262 </dd> | 274 </dd> |
263 <dt><i>signature</i> (str)</dt> | 275 <dt><i>signature</i> (str)</dt> |
264 <dd> | 276 <dd> |
265 parameterlist of the method | 277 parameter list of the function |
266 </dd> | 278 </dd> |
267 <dt><i>separator</i> (str)</dt> | 279 <dt><i>separator</i> (str)</dt> |
268 <dd> | 280 <dd> |
269 string separating the parameters | 281 string separating the parameters |
270 </dd> | 282 </dd> |