Documentation/Source/eric6.Utilities.ClassBrowsers.ClbrBaseClasses.html

changeset 5977
8a0ec75b0f73
parent 5606
da305d172769
equal deleted inserted replaced
5976:549918576245 5977:8a0ec75b0f73
43 <td>Class implementing the base class of all visibility mixins.</td> 43 <td>Class implementing the base class of all visibility mixins.</td>
44 </tr><tr> 44 </tr><tr>
45 <td><a href="#Coding">Coding</a></td> 45 <td><a href="#Coding">Coding</a></td>
46 <td>Class to represent a source coding.</td> 46 <td>Class to represent a source coding.</td>
47 </tr><tr> 47 </tr><tr>
48 <td><a href="#Enum">Enum</a></td>
49 <td>Class to represent an enum definition.</td>
50 </tr><tr>
48 <td><a href="#Function">Function</a></td> 51 <td><a href="#Function">Function</a></td>
49 <td>Class to represent a function or method.</td> 52 <td>Class to represent a function or method.</td>
50 </tr><tr> 53 </tr><tr>
51 <td><a href="#Module">Module</a></td> 54 <td><a href="#Module">Module</a></td>
52 <td>Class to represent a module.</td> 55 <td>Class to represent a module.</td>
93 <h4>Attribute (Constructor)</h4> 96 <h4>Attribute (Constructor)</h4>
94 <b>Attribute</b>(<i>module, name, file, lineno</i>) 97 <b>Attribute</b>(<i>module, name, file, lineno</i>)
95 <p> 98 <p>
96 Constructor 99 Constructor
97 </p><dl> 100 </p><dl>
98 <dt><i>module</i></dt> 101 <dt><i>module</i> (str)</dt>
99 <dd> 102 <dd>
100 name of the module containing this class 103 name of the module containing this attribute
101 </dd><dt><i>name</i></dt> 104 </dd><dt><i>name</i> (str)</dt>
102 <dd> 105 <dd>
103 name of this class 106 name of this attribute
104 </dd><dt><i>file</i></dt> 107 </dd><dt><i>file</i> (str)</dt>
105 <dd> 108 <dd>
106 filename containing this attribute 109 filename containing this attribute
107 </dd><dt><i>lineno</i></dt> 110 </dd><dt><i>lineno</i> (int)</dt>
108 <dd> 111 <dd>
109 linenumber of the class definition 112 line number of the attribute definition
110 </dd> 113 </dd>
111 </dl><a NAME="Attribute.addAssignment" ID="Attribute.addAssignment"></a> 114 </dl><a NAME="Attribute.addAssignment" ID="Attribute.addAssignment"></a>
112 <h4>Attribute.addAssignment</h4> 115 <h4>Attribute.addAssignment</h4>
113 <b>addAssignment</b>(<i>lineno</i>) 116 <b>addAssignment</b>(<i>lineno</i>)
114 <p> 117 <p>
115 Public method to add another assignment line number. 118 Public method to add another assignment line number.
116 </p><dl> 119 </p><dl>
117 <dt><i>lineno</i></dt> 120 <dt><i>lineno</i> (int)</dt>
118 <dd> 121 <dd>
119 linenumber of the additional attribute assignment 122 line number of the additional attribute assignment
120 (integer)
121 </dd> 123 </dd>
122 </dl> 124 </dl>
123 <div align="right"><a href="#top">Up</a></div> 125 <div align="right"><a href="#top">Up</a></div>
124 <hr /><hr /> 126 <hr /><hr />
125 <a NAME="Class" ID="Class"></a> 127 <a NAME="Class" ID="Class"></a>
152 <h4>Class (Constructor)</h4> 154 <h4>Class (Constructor)</h4>
153 <b>Class</b>(<i>module, name, superClasses, file, lineno</i>) 155 <b>Class</b>(<i>module, name, superClasses, file, lineno</i>)
154 <p> 156 <p>
155 Constructor 157 Constructor
156 </p><dl> 158 </p><dl>
157 <dt><i>module</i></dt> 159 <dt><i>module</i> (str)</dt>
158 <dd> 160 <dd>
159 name of the module containing this class 161 name of the module containing this class
160 </dd><dt><i>name</i></dt> 162 </dd><dt><i>name</i> (str)</dt>
161 <dd> 163 <dd>
162 name of this class 164 name of this class
163 </dd><dt><i>superClasses</i></dt> 165 </dd><dt><i>superClasses</i> (list of str)</dt>
164 <dd> 166 <dd>
165 list of class names this class is inherited from 167 list of class names this class is inherited from
166 </dd><dt><i>file</i></dt> 168 </dd><dt><i>file</i> (str)</dt>
167 <dd> 169 <dd>
168 filename containing this class 170 filename containing this class
169 </dd><dt><i>lineno</i></dt> 171 </dd><dt><i>lineno</i> (int)</dt>
170 <dd> 172 <dd>
171 linenumber of the class definition 173 line number of the class definition
172 </dd> 174 </dd>
173 </dl> 175 </dl>
174 <div align="right"><a href="#top">Up</a></div> 176 <div align="right"><a href="#top">Up</a></div>
175 <hr /><hr /> 177 <hr /><hr />
176 <a NAME="ClbrBase" ID="ClbrBase"></a> 178 <a NAME="ClbrBase" ID="ClbrBase"></a>
224 <h4>ClbrBase (Constructor)</h4> 226 <h4>ClbrBase (Constructor)</h4>
225 <b>ClbrBase</b>(<i>module, name, file, lineno</i>) 227 <b>ClbrBase</b>(<i>module, name, file, lineno</i>)
226 <p> 228 <p>
227 Constructor 229 Constructor
228 </p><dl> 230 </p><dl>
229 <dt><i>module</i></dt> 231 <dt><i>module</i> (str)</dt>
230 <dd> 232 <dd>
231 name of the module containing this class 233 name of the module containing this object
232 </dd><dt><i>name</i></dt> 234 </dd><dt><i>name</i> (str)</dt>
233 <dd> 235 <dd>
234 name of this class 236 name of this object
235 </dd><dt><i>file</i></dt> 237 </dd><dt><i>file</i> (str)</dt>
236 <dd> 238 <dd>
237 filename containing this object 239 filename containing this object
238 </dd><dt><i>lineno</i></dt> 240 </dd><dt><i>lineno</i> (int)</dt>
239 <dd> 241 <dd>
240 linenumber of the class definition 242 linenumber of the object definition
241 </dd> 243 </dd>
242 </dl><a NAME="ClbrBase._addattribute" ID="ClbrBase._addattribute"></a> 244 </dl><a NAME="ClbrBase._addattribute" ID="ClbrBase._addattribute"></a>
243 <h4>ClbrBase._addattribute</h4> 245 <h4>ClbrBase._addattribute</h4>
244 <b>_addattribute</b>(<i>attr</i>) 246 <b>_addattribute</b>(<i>attr</i>)
245 <p> 247 <p>
246 Protected method to add information about attributes. 248 Protected method to add information about attributes.
247 </p><dl> 249 </p><dl>
248 <dt><i>attr</i></dt> 250 <dt><i>attr</i> (Attribute)</dt>
249 <dd> 251 <dd>
250 Attribute object to be added (Attribute) 252 Attribute object to be added
251 </dd> 253 </dd>
252 </dl><a NAME="ClbrBase._addclass" ID="ClbrBase._addclass"></a> 254 </dl><a NAME="ClbrBase._addclass" ID="ClbrBase._addclass"></a>
253 <h4>ClbrBase._addclass</h4> 255 <h4>ClbrBase._addclass</h4>
254 <b>_addclass</b>(<i>name, _class</i>) 256 <b>_addclass</b>(<i>name, _class</i>)
255 <p> 257 <p>
256 Protected method method to add a nested class to this class. 258 Protected method method to add a nested class to this class.
257 </p><dl> 259 </p><dl>
258 <dt><i>name</i></dt> 260 <dt><i>name</i> (str)</dt>
259 <dd> 261 <dd>
260 name of the class 262 name of the class
261 </dd><dt><i>_class</i></dt> 263 </dd><dt><i>_class</i> (Class)</dt>
262 <dd> 264 <dd>
263 Class object to be added (Class) 265 Class object to be added
264 </dd> 266 </dd>
265 </dl><a NAME="ClbrBase._addglobal" ID="ClbrBase._addglobal"></a> 267 </dl><a NAME="ClbrBase._addglobal" ID="ClbrBase._addglobal"></a>
266 <h4>ClbrBase._addglobal</h4> 268 <h4>ClbrBase._addglobal</h4>
267 <b>_addglobal</b>(<i>attr</i>) 269 <b>_addglobal</b>(<i>attr</i>)
268 <p> 270 <p>
269 Protected method to add information about global variables. 271 Protected method to add information about global variables.
270 </p><dl> 272 </p><dl>
271 <dt><i>attr</i></dt> 273 <dt><i>attr</i> (Attribute)</dt>
272 <dd> 274 <dd>
273 Attribute object to be added (Attribute) 275 Attribute object to be added
274 </dd> 276 </dd>
275 </dl><a NAME="ClbrBase._addmethod" ID="ClbrBase._addmethod"></a> 277 </dl><a NAME="ClbrBase._addmethod" ID="ClbrBase._addmethod"></a>
276 <h4>ClbrBase._addmethod</h4> 278 <h4>ClbrBase._addmethod</h4>
277 <b>_addmethod</b>(<i>name, function</i>) 279 <b>_addmethod</b>(<i>name, function</i>)
278 <p> 280 <p>
279 Protected method to add information about a method. 281 Protected method to add information about a method.
280 </p><dl> 282 </p><dl>
281 <dt><i>name</i></dt> 283 <dt><i>name</i> (str)</dt>
282 <dd> 284 <dd>
283 name of method to be added (string) 285 name of method to be added
284 </dd><dt><i>function</i></dt> 286 </dd><dt><i>function</i> (Function)</dt>
285 <dd> 287 <dd>
286 Function object to be added 288 Function object to be added
287 </dd> 289 </dd>
288 </dl><a NAME="ClbrBase._getattribute" ID="ClbrBase._getattribute"></a> 290 </dl><a NAME="ClbrBase._getattribute" ID="ClbrBase._getattribute"></a>
289 <h4>ClbrBase._getattribute</h4> 291 <h4>ClbrBase._getattribute</h4>
290 <b>_getattribute</b>(<i>name</i>) 292 <b>_getattribute</b>(<i>name</i>)
291 <p> 293 <p>
292 Protected method to retrieve an attribute by name. 294 Protected method to retrieve an attribute by name.
293 </p><dl> 295 </p><dl>
294 <dt><i>name</i></dt> 296 <dt><i>name</i> (str)</dt>
295 <dd> 297 <dd>
296 name of the attribute (string) 298 name of the attribute
297 </dd> 299 </dd>
298 </dl><dl> 300 </dl><dl>
299 <dt>Returns:</dt> 301 <dt>Returns:</dt>
300 <dd> 302 <dd>
301 the named attribute or None 303 the named attribute
304 </dd>
305 </dl><dl>
306 <dt>Return Type:</dt>
307 <dd>
308 Attribute or None
302 </dd> 309 </dd>
303 </dl><a NAME="ClbrBase._getglobal" ID="ClbrBase._getglobal"></a> 310 </dl><a NAME="ClbrBase._getglobal" ID="ClbrBase._getglobal"></a>
304 <h4>ClbrBase._getglobal</h4> 311 <h4>ClbrBase._getglobal</h4>
305 <b>_getglobal</b>(<i>name</i>) 312 <b>_getglobal</b>(<i>name</i>)
306 <p> 313 <p>
307 Protected method to retrieve a global variable by name. 314 Protected method to retrieve a global variable by name.
308 </p><dl> 315 </p><dl>
309 <dt><i>name</i></dt> 316 <dt><i>name</i> (str)</dt>
310 <dd> 317 <dd>
311 name of the global variable (string) 318 name of the global variable
312 </dd> 319 </dd>
313 </dl><dl> 320 </dl><dl>
314 <dt>Returns:</dt> 321 <dt>Returns:</dt>
315 <dd> 322 <dd>
316 the named global variable or None 323 the named global variable
324 </dd>
325 </dl><dl>
326 <dt>Return Type:</dt>
327 <dd>
328 Attribute or None
317 </dd> 329 </dd>
318 </dl><a NAME="ClbrBase._getmethod" ID="ClbrBase._getmethod"></a> 330 </dl><a NAME="ClbrBase._getmethod" ID="ClbrBase._getmethod"></a>
319 <h4>ClbrBase._getmethod</h4> 331 <h4>ClbrBase._getmethod</h4>
320 <b>_getmethod</b>(<i>name</i>) 332 <b>_getmethod</b>(<i>name</i>)
321 <p> 333 <p>
322 Protected method to retrieve a method by name. 334 Protected method to retrieve a method by name.
323 </p><dl> 335 </p><dl>
324 <dt><i>name</i></dt> 336 <dt><i>name</i> (str)</dt>
325 <dd> 337 <dd>
326 name of the method (string) 338 name of the method (string)
327 </dd> 339 </dd>
328 </dl><dl> 340 </dl><dl>
329 <dt>Returns:</dt> 341 <dt>Returns:</dt>
330 <dd> 342 <dd>
331 the named method or None 343 the named method
344 </dd>
345 </dl><dl>
346 <dt>Return Type:</dt>
347 <dd>
348 Function or None
332 </dd> 349 </dd>
333 </dl> 350 </dl>
334 <div align="right"><a href="#top">Up</a></div> 351 <div align="right"><a href="#top">Up</a></div>
335 <hr /><hr /> 352 <hr /><hr />
336 <a NAME="ClbrVisibilityMixinBase" ID="ClbrVisibilityMixinBase"></a> 353 <a NAME="ClbrVisibilityMixinBase" ID="ClbrVisibilityMixinBase"></a>
380 <p> 397 <p>
381 Public method to check, if the visibility is Private. 398 Public method to check, if the visibility is Private.
382 </p><dl> 399 </p><dl>
383 <dt>Returns:</dt> 400 <dt>Returns:</dt>
384 <dd> 401 <dd>
385 flag indicating Private visibility (boolean) 402 flag indicating Private visibility
403 </dd>
404 </dl><dl>
405 <dt>Return Type:</dt>
406 <dd>
407 bool
386 </dd> 408 </dd>
387 </dl><a NAME="ClbrVisibilityMixinBase.isProtected" ID="ClbrVisibilityMixinBase.isProtected"></a> 409 </dl><a NAME="ClbrVisibilityMixinBase.isProtected" ID="ClbrVisibilityMixinBase.isProtected"></a>
388 <h4>ClbrVisibilityMixinBase.isProtected</h4> 410 <h4>ClbrVisibilityMixinBase.isProtected</h4>
389 <b>isProtected</b>(<i></i>) 411 <b>isProtected</b>(<i></i>)
390 <p> 412 <p>
391 Public method to check, if the visibility is Protected. 413 Public method to check, if the visibility is Protected.
392 </p><dl> 414 </p><dl>
393 <dt>Returns:</dt> 415 <dt>Returns:</dt>
394 <dd> 416 <dd>
395 flag indicating Protected visibility (boolean) 417 flag indicating Protected visibility
418 </dd>
419 </dl><dl>
420 <dt>Return Type:</dt>
421 <dd>
422 bool
396 </dd> 423 </dd>
397 </dl><a NAME="ClbrVisibilityMixinBase.isPublic" ID="ClbrVisibilityMixinBase.isPublic"></a> 424 </dl><a NAME="ClbrVisibilityMixinBase.isPublic" ID="ClbrVisibilityMixinBase.isPublic"></a>
398 <h4>ClbrVisibilityMixinBase.isPublic</h4> 425 <h4>ClbrVisibilityMixinBase.isPublic</h4>
399 <b>isPublic</b>(<i></i>) 426 <b>isPublic</b>(<i></i>)
400 <p> 427 <p>
401 Public method to check, if the visibility is Public. 428 Public method to check, if the visibility is Public.
402 </p><dl> 429 </p><dl>
403 <dt>Returns:</dt> 430 <dt>Returns:</dt>
404 <dd> 431 <dd>
405 flag indicating Public visibility (boolean) 432 flag indicating Public visibility
433 </dd>
434 </dl><dl>
435 <dt>Return Type:</dt>
436 <dd>
437 bool
406 </dd> 438 </dd>
407 </dl><a NAME="ClbrVisibilityMixinBase.setPrivate" ID="ClbrVisibilityMixinBase.setPrivate"></a> 439 </dl><a NAME="ClbrVisibilityMixinBase.setPrivate" ID="ClbrVisibilityMixinBase.setPrivate"></a>
408 <h4>ClbrVisibilityMixinBase.setPrivate</h4> 440 <h4>ClbrVisibilityMixinBase.setPrivate</h4>
409 <b>setPrivate</b>(<i></i>) 441 <b>setPrivate</b>(<i></i>)
410 <p> 442 <p>
452 <h4>Coding (Constructor)</h4> 484 <h4>Coding (Constructor)</h4>
453 <b>Coding</b>(<i>module, file, lineno, coding</i>) 485 <b>Coding</b>(<i>module, file, lineno, coding</i>)
454 <p> 486 <p>
455 Constructor 487 Constructor
456 </p><dl> 488 </p><dl>
457 <dt><i>module</i></dt> 489 <dt><i>module</i> (str)</dt>
458 <dd> 490 <dd>
459 name of the module containing this module 491 name of the module containing this coding statement
460 </dd><dt><i>file</i></dt> 492 </dd><dt><i>file</i> (str)</dt>
461 <dd> 493 <dd>
462 filename containing this module 494 filename containing this coding statement
463 </dd><dt><i>lineno</i></dt> 495 </dd><dt><i>lineno</i> (int)</dt>
464 <dd> 496 <dd>
465 linenumber of the module definition 497 line number of the coding definition
466 </dd><dt><i>coding</i></dt> 498 </dd><dt><i>coding</i> (str)</dt>
467 <dd> 499 <dd>
468 character coding of the source file 500 character coding of the source file
501 </dd>
502 </dl>
503 <div align="right"><a href="#top">Up</a></div>
504 <hr /><hr />
505 <a NAME="Enum" ID="Enum"></a>
506 <h2>Enum</h2>
507 <p>
508 Class to represent an enum definition.
509 </p>
510 <h3>Derived from</h3>
511 ClbrBase
512 <h3>Class Attributes</h3>
513 <table>
514 <tr><td>None</td></tr>
515 </table>
516 <h3>Class Methods</h3>
517 <table>
518 <tr><td>None</td></tr>
519 </table>
520 <h3>Methods</h3>
521 <table>
522 <tr>
523 <td><a href="#Enum.__init__">Enum</a></td>
524 <td>Constructor</td>
525 </tr>
526 </table>
527 <h3>Static Methods</h3>
528 <table>
529 <tr><td>None</td></tr>
530 </table>
531 <a NAME="Enum.__init__" ID="Enum.__init__"></a>
532 <h4>Enum (Constructor)</h4>
533 <b>Enum</b>(<i>module, name, file, lineno</i>)
534 <p>
535 Constructor
536 </p><dl>
537 <dt><i>module</i> (str)</dt>
538 <dd>
539 name of the module containing this enum
540 </dd><dt><i>name</i> (str)</dt>
541 <dd>
542 name of this enum
543 </dd><dt><i>file</i> (str)</dt>
544 <dd>
545 filename containing this enum
546 </dd><dt><i>lineno</i> (int)</dt>
547 <dd>
548 line number of the enum definition
469 </dd> 549 </dd>
470 </dl> 550 </dl>
471 <div align="right"><a href="#top">Up</a></div> 551 <div align="right"><a href="#top">Up</a></div>
472 <hr /><hr /> 552 <hr /><hr />
473 <a NAME="Function" ID="Function"></a> 553 <a NAME="Function" ID="Function"></a>
500 <h4>Function (Constructor)</h4> 580 <h4>Function (Constructor)</h4>
501 <b>Function</b>(<i>module, name, file, lineno, signature='', separator=', ', modifierType=General, annotation=""</i>) 581 <b>Function</b>(<i>module, name, file, lineno, signature='', separator=', ', modifierType=General, annotation=""</i>)
502 <p> 582 <p>
503 Constructor 583 Constructor
504 </p><dl> 584 </p><dl>
505 <dt><i>module</i></dt> 585 <dt><i>module</i> (str)</dt>
506 <dd> 586 <dd>
507 name of the module containing this function 587 name of the module containing this function
508 </dd><dt><i>name</i></dt> 588 </dd><dt><i>name</i> (str)</dt>
509 <dd> 589 <dd>
510 name of this function 590 name of this function
511 </dd><dt><i>file</i></dt> 591 </dd><dt><i>file</i> (str)</dt>
512 <dd> 592 <dd>
513 filename containing this class 593 filename containing this function
514 </dd><dt><i>lineno</i></dt> 594 </dd><dt><i>lineno</i> (int)</dt>
515 <dd> 595 <dd>
516 linenumber of the class definition 596 line number of the function definition
517 </dd><dt><i>signature</i></dt> 597 </dd><dt><i>signature</i> (str)</dt>
518 <dd> 598 <dd>
519 parameterlist of the method 599 parameter list of the function
520 </dd><dt><i>separator</i></dt> 600 </dd><dt><i>separator</i> (str)</dt>
521 <dd> 601 <dd>
522 string separating the parameters 602 string separating the parameters of the function
523 </dd><dt><i>modifierType</i></dt> 603 </dd><dt><i>modifierType</i> (int)</dt>
524 <dd> 604 <dd>
525 type of the function 605 type of the function
526 </dd><dt><i>annotation</i></dt> 606 </dd><dt><i>annotation</i> (str)</dt>
527 <dd> 607 <dd>
528 return annotation 608 function return annotation
529 </dd> 609 </dd>
530 </dl> 610 </dl>
531 <div align="right"><a href="#top">Up</a></div> 611 <div align="right"><a href="#top">Up</a></div>
532 <hr /><hr /> 612 <hr /><hr />
533 <a NAME="Module" ID="Module"></a> 613 <a NAME="Module" ID="Module"></a>
560 <h4>Module (Constructor)</h4> 640 <h4>Module (Constructor)</h4>
561 <b>Module</b>(<i>module, name, file, lineno</i>) 641 <b>Module</b>(<i>module, name, file, lineno</i>)
562 <p> 642 <p>
563 Constructor 643 Constructor
564 </p><dl> 644 </p><dl>
565 <dt><i>module</i></dt> 645 <dt><i>module</i> (str)</dt>
566 <dd> 646 <dd>
567 name of the module containing this module 647 name of the module containing this module
568 </dd><dt><i>name</i></dt> 648 </dd><dt><i>name</i> (str)</dt>
569 <dd> 649 <dd>
570 name of this module 650 name of this module
571 </dd><dt><i>file</i></dt> 651 </dd><dt><i>file</i> (str)</dt>
572 <dd> 652 <dd>
573 filename containing this module 653 filename containing this module
574 </dd><dt><i>lineno</i></dt> 654 </dd><dt><i>lineno</i> (int)</dt>
575 <dd> 655 <dd>
576 linenumber of the module definition 656 line number of the module definition
577 </dd> 657 </dd>
578 </dl> 658 </dl>
579 <div align="right"><a href="#top">Up</a></div> 659 <div align="right"><a href="#top">Up</a></div>
580 <hr /><hr /> 660 <hr /><hr />
581 <a NAME="_ClbrBase" ID="_ClbrBase"></a> 661 <a NAME="_ClbrBase" ID="_ClbrBase"></a>
611 <h4>_ClbrBase (Constructor)</h4> 691 <h4>_ClbrBase (Constructor)</h4>
612 <b>_ClbrBase</b>(<i>module, name, file, lineno</i>) 692 <b>_ClbrBase</b>(<i>module, name, file, lineno</i>)
613 <p> 693 <p>
614 Constructor 694 Constructor
615 </p><dl> 695 </p><dl>
616 <dt><i>module</i></dt> 696 <dt><i>module</i> (str)</dt>
617 <dd> 697 <dd>
618 name of the module containing this class 698 name of the module containing this object
619 </dd><dt><i>name</i></dt> 699 </dd><dt><i>name</i> (str)</dt>
620 <dd> 700 <dd>
621 name of this class 701 name of this object
622 </dd><dt><i>file</i></dt> 702 </dd><dt><i>file</i> (str)</dt>
623 <dd> 703 <dd>
624 filename containing this object 704 filename containing this object
625 </dd><dt><i>lineno</i></dt> 705 </dd><dt><i>lineno</i> (int)</dt>
626 <dd> 706 <dd>
627 linenumber of the class definition 707 linenumber of the object definition
628 </dd> 708 </dd>
629 </dl><a NAME="_ClbrBase.setEndLine" ID="_ClbrBase.setEndLine"></a> 709 </dl><a NAME="_ClbrBase.setEndLine" ID="_ClbrBase.setEndLine"></a>
630 <h4>_ClbrBase.setEndLine</h4> 710 <h4>_ClbrBase.setEndLine</h4>
631 <b>setEndLine</b>(<i>endLineNo</i>) 711 <b>setEndLine</b>(<i>endLineNo</i>)
632 <p> 712 <p>
633 Public method to set the ending line number. 713 Public method to set the ending line number.
634 </p><dl> 714 </p><dl>
635 <dt><i>endLineNo</i></dt> 715 <dt><i>endLineNo</i> (int)</dt>
636 <dd> 716 <dd>
637 number of the last line (integer) 717 number of the last line
638 </dd> 718 </dd>
639 </dl> 719 </dl>
640 <div align="right"><a href="#top">Up</a></div> 720 <div align="right"><a href="#top">Up</a></div>
641 <hr /> 721 <hr />
642 </body></html> 722 </body></html>

eric ide

mercurial