This file is indexed.

/usr/share/doc/libjdom1-java/api/index-files/index-7.html is in libjdom1-java-doc 1.1.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_27) on Tue Jul 30 04:06:35 UTC 2013 -->
<title>G-Index (JDOM v1.SNAPSHOT)</title>
<meta name="date" content="2013-07-30">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="G-Index (JDOM v1.SNAPSHOT)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><b>JDOM<br><font size='-1'>1.SNAPSHOT</font></b></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-6.html">PREV LETTER</a></li>
<li><a href="index-8.html">NEXT LETTER</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-7.html" target="_top">FRAMES</a></li>
<li><a href="index-7.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">M</a>&nbsp;<a href="index-12.html">N</a>&nbsp;<a href="index-13.html">O</a>&nbsp;<a href="index-14.html">P</a>&nbsp;<a href="index-15.html">R</a>&nbsp;<a href="index-16.html">S</a>&nbsp;<a href="index-17.html">T</a>&nbsp;<a href="index-18.html">U</a>&nbsp;<a href="index-19.html">V</a>&nbsp;<a href="index-20.html">W</a>&nbsp;<a href="index-21.html">X</a>&nbsp;<a name="_G_">
<!--   -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAdditionalNamespaces()">getAdditionalNamespaces()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns a list of the additional namespace declarations on this element.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttribute(java.lang.String)">getAttribute(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute for this element with the given name
 and within no namespace, or null if no such attribute exists.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttribute(java.lang.String, org.jdom.Namespace)">getAttribute(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute for this element with the given name
 and within the given Namespace, or null if no such attribute exists.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttributes()">getAttributes()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the complete set of attributes for this element, as a
 <code>List</code> of <code>Attribute</code> objects in no particular
 order, or an empty list if there are none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getAttributeType()">getAttributeType()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will return the actual declared type of this
 <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttributeValue(java.lang.String)">getAttributeValue(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute value for the attribute with the given name
 and within no namespace, null if there is no such attribute, and the
 empty string if the attribute value is empty.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttributeValue(java.lang.String, java.lang.String)">getAttributeValue(String, String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute value for the attribute with the given name
 and within no namespace, or the passed-in default if there is no
 such attribute.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttributeValue(java.lang.String, org.jdom.Namespace)">getAttributeValue(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute value for the attribute with the given name
 and within the given Namespace, null if there is no such attribute, and
 the empty string if the attribute value is empty.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getAttributeValue(java.lang.String, org.jdom.Namespace, java.lang.String)">getAttributeValue(String, Namespace, String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">
 This returns the attribute value for the attribute with the given name
 and within the given Namespace, or the passed-in default if there is no
 such attribute.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getBaseURI()">getBaseURI()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">
   Returns the URI from which this document was loaded,
   or null if this is not known.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getBooleanValue()">getBooleanValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This gets the effective boolean value of the attribute, or throws a
 <code><a href="../org/jdom/DataConversionException.html" title="class in org.jdom"><code>DataConversionException</code></a></code> if a conversion can't be
 performed.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/JDOMException.html#getCause()">getCause()</a></span> - Method in exception org.jdom.<a href="../org/jdom/JDOMException.html" title="class in org.jdom">JDOMException</a></dt>
<dd>
<div class="block">This will return the root cause <code>Throwable</code>, or null
 if one does not exist.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChild(java.lang.String, org.jdom.Namespace)">getChild(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns the first child element within this element with the
 given local name and belonging to the given namespace.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChild(java.lang.String)">getChild(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns the first child element within this element with the
 given local name and belonging to no namespace.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildren()">getChildren()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns a <code>List</code> of all the child elements
 nested directly (one level deep) within this element, as
 <code>Element</code> objects.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildren(java.lang.String)">getChildren(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns a <code>List</code> of all the child elements
 nested directly (one level deep) within this element with the given
 local name and belonging to no namespace, returned as
 <code>Element</code> objects.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildren(java.lang.String, org.jdom.Namespace)">getChildren(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns a <code>List</code> of all the child elements
 nested directly (one level deep) within this element with the given
 local name and belonging to the given Namespace, returned as
 <code>Element</code> objects.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildText(java.lang.String)">getChildText(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the textual content of the named child element, or null if
 there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildText(java.lang.String, org.jdom.Namespace)">getChildText(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the textual content of the named child element, or null if
 there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildTextNormalize(java.lang.String)">getChildTextNormalize(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the normalized textual content of the named child element, or
 null if there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildTextNormalize(java.lang.String, org.jdom.Namespace)">getChildTextNormalize(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the normalized textual content of the named child element, or
 null if there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildTextTrim(java.lang.String)">getChildTextTrim(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the trimmed textual content of the named child element, or null
 if there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getChildTextTrim(java.lang.String, org.jdom.Namespace)">getChildTextTrim(String, Namespace)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the trimmed textual content of the named child element, or null
 if there's no such child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/JDOMParseException.html#getColumnNumber()">getColumnNumber()</a></span> - Method in exception org.jdom.input.<a href="../org/jdom/input/JDOMParseException.html" title="class in org.jdom.input">JDOMParseException</a></dt>
<dd>
<div class="block">Returns the column number of the end of the text where the
 parse error occurred.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getCompactFormat()">getCompactFormat()</a></span> - Static method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns a new Format object that performs whitespace normalization, uses
 the UTF-8 encoding, doesn't expand empty elements, includes the
 declaration and encoding, and uses the default entity escape strategy.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getContent(int)">getContent(int)</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getContent()">getContent()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">This will return all content for the <code>Document</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getContent(org.jdom.filter.Filter)">getContent(Filter)</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">Return a filtered view of this <code>Document</code>'s content.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getContent()">getContent()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">This returns the full content of the element as a List which
 may contain objects of type <code>Text</code>, <code>Element</code>,
 <code>Comment</code>, <code>ProcessingInstruction</code>,
 <code>CDATA</code>, and <code>EntityRef</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getContent(org.jdom.filter.Filter)">getContent(Filter)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Return a filter view of this <code>Element</code>'s content.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getContent(int)">getContent(int)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getContent(int)">getContent(int)</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns the child at the given index.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getContent()">getContent()</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns the full content of this parent as a <code>List</code>
 which contains objects of type <a href="../org/jdom/Content.html" title="class in org.jdom"><code>Content</code></a>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getContent(org.jdom.filter.Filter)">getContent(Filter)</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns as a <code>List</code> the content of
 this parent that matches the supplied filter.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getContentHandler()">getContentHandler()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Returns the registered <code>ContentHandler</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getContentSize()">getContentSize()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getContentSize()">getContentSize()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getContentSize()">getContentSize()</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns the number of children in this parent's content list.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getCurrentElement()">getCurrentElement()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns the being-parsed element.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/ProcessingInstruction.html#getData()">getData()</a></span> - Method in class org.jdom.<a href="../org/jdom/ProcessingInstruction.html" title="class in org.jdom">ProcessingInstruction</a></dt>
<dd>
<div class="block">This will return the raw data from all instructions.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getDeclHandler()">getDeclHandler()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Return the registered <code>DeclHandler</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getDescendants()">getDescendants()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">Returns an iterator that walks over all descendants in document order.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getDescendants(org.jdom.filter.Filter)">getDescendants(Filter)</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">Returns an iterator that walks over all descendants in document order
 applying the Filter to return only elements that match the filter rule.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getDescendants()">getDescendants()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns an iterator that walks over all descendants in document order.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getDescendants(org.jdom.filter.Filter)">getDescendants(Filter)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns an iterator that walks over all descendants in document order
 applying the Filter to return only elements that match the filter rule.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getDescendants()">getDescendants()</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns an <code>Iterator</code> that walks over all descendants
 in document order.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getDescendants(org.jdom.filter.Filter)">getDescendants(Filter)</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Returns an <code>Iterator</code> that walks over all descendants
 in document order applying the Filter to return only elements that
 match the filter rule.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getDocType()">getDocType()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">This will return the <code><a href="../org/jdom/DocType.html" title="class in org.jdom"><code>DocType</code></a></code>
 declaration for this <code>Document</code>, or
 <code>null</code> if none exists.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/AbstractDOMAdapter.html#getDocument(java.io.File, boolean)">getDocument(File, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/AbstractDOMAdapter.html" title="class in org.jdom.adapters">AbstractDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/AbstractDOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/AbstractDOMAdapter.html" title="class in org.jdom.adapters">AbstractDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/CrimsonDOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/CrimsonDOMAdapter.html" title="class in org.jdom.adapters">CrimsonDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/DOMAdapter.html#getDocument(java.io.File, boolean)">getDocument(File, boolean)</a></span> - Method in interface org.jdom.adapters.<a href="../org/jdom/adapters/DOMAdapter.html" title="interface in org.jdom.adapters">DOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code>Document</code> from a
 given filename by letting a DOM parser handle parsing from the file.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/DOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in interface org.jdom.adapters.<a href="../org/jdom/adapters/DOMAdapter.html" title="interface in org.jdom.adapters">DOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code>Document</code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/JAXPDOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/JAXPDOMAdapter.html" title="class in org.jdom.adapters">JAXPDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a JAXP
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/OracleV1DOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/OracleV1DOMAdapter.html" title="class in org.jdom.adapters">OracleV1DOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/OracleV2DOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/OracleV2DOMAdapter.html" title="class in org.jdom.adapters">OracleV2DOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/XercesDOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/XercesDOMAdapter.html" title="class in org.jdom.adapters">XercesDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/adapters/XML4JDOMAdapter.html#getDocument(java.io.InputStream, boolean)">getDocument(InputStream, boolean)</a></span> - Method in class org.jdom.adapters.<a href="../org/jdom/adapters/XML4JDOMAdapter.html" title="class in org.jdom.adapters">XML4JDOMAdapter</a></dt>
<dd>
<div class="block">This creates a new <code><code>Document</code></code> from an
 existing <code>InputStream</code> by letting a DOM
 parser handle parsing using the supplied stream.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This retrieves the owning <code><a href="../org/jdom/Document.html" title="class in org.jdom"><code>Document</code></a></code> for
 this Attribute, or null if not a currently a member of a
 <code><a href="../org/jdom/Document.html" title="class in org.jdom"><code>Document</code></a></code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Content.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.<a href="../org/jdom/Content.html" title="class in org.jdom">Content</a></dt>
<dd>
<div class="block">Return this child's owning document or null if the branch containing
 this child is currently not attached to a document.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns the document.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getDocument()">getDocument()</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Return this parent's owning document or null if the branch containing
 this parent is currently not attached to a document.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMResult.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMResult.html" title="class in org.jdom.transform">JDOMResult</a></dt>
<dd>
<div class="block">Returns the result of an XSL Transformation as a JDOM document.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMSource.html#getDocument()">getDocument()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMSource.html" title="class in org.jdom.transform">JDOMSource</a></dt>
<dd>
<div class="block">Returns the source document used by this TrAX source.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getDocumentLocator()">getDocumentLocator()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Provides access to the <code>Locator</code> object provided by the
 SAX parser.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getDoubleValue()">getDoubleValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This gets the value of the attribute, in
 <code>double</code> form, and if no conversion
 can occur, throws a
 <code><a href="../org/jdom/DataConversionException.html" title="class in org.jdom"><code>DataConversionException</code></a></code></div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getDriverClass()">getDriverClass()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the driver class assigned in the constructor, or null if none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getDTDHandler()">getDTDHandler()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the <code>DTDHandler</code> assigned, or null if none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getDTDHandler()">getDTDHandler()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Return the registered <code>DTDHandler</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/DocType.html#getElementName()">getElementName()</a></span> - Method in class org.jdom.<a href="../org/jdom/DocType.html" title="class in org.jdom">DocType</a></dt>
<dd>
<div class="block">This will retrieve the element name being constrained.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getEncoding()">getEncoding()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns the configured output encoding.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getEntityResolver()">getEntityResolver()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the <code>EntityResolver</code> assigned, or null if none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getEntityResolver()">getEntityResolver()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Return the registered <code>EntityResolver</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getErrorHandler()">getErrorHandler()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the <code>ErrorHandler</code> assigned, or null if none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getErrorHandler()">getErrorHandler()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Return the registered <code>ErrorHandler</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getEscapeStrategy()">getEscapeStrategy()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns the current escape strategy</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getExpandEmptyElements()">getExpandEmptyElements()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns whether empty elements are expanded.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getExpandEntities()">getExpandEntities()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns whether or not entities are being expanded into normal text
 content.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getExpandEntities()">getExpandEntities()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns whether or not entities will be expanded during the
 build.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/DOMBuilder.html#getFactory()">getFactory()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/DOMBuilder.html" title="class in org.jdom.input">DOMBuilder</a></dt>
<dd>
<div class="block">Returns the current <a href="../org/jdom/JDOMFactory.html" title="interface in org.jdom"><code>JDOMFactory</code></a> in use.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getFactory()">getFactory()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the current <a href="../org/jdom/JDOMFactory.html" title="interface in org.jdom"><code>JDOMFactory</code></a> in use.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getFactory()">getFactory()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns the factory used for constructing objects.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMResult.html#getFactory()">getFactory()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMResult.html" title="class in org.jdom.transform">JDOMResult</a></dt>
<dd>
<div class="block">Returns the custom JDOMFactory used to build the transformation
 result.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/XSLTransformer.html#getFactory()">getFactory()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/XSLTransformer.html" title="class in org.jdom.transform">XSLTransformer</a></dt>
<dd>
<div class="block">Returns the custom JDOMFactory used to build the transformation
 result.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getFeature(java.lang.String)">getFeature(String)</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">This will look up the value of a SAX feature.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/filter/ContentFilter.html#getFilterMask()">getFilterMask()</a></span> - Method in class org.jdom.filter.<a href="../org/jdom/filter/ContentFilter.html" title="class in org.jdom.filter">ContentFilter</a></dt>
<dd>
<div class="block">Return current filtering mask.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getFloatValue()">getFloatValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This gets the value of the attribute, in
 <code>float</code> form, and if no conversion
 can occur, throws a
 <code><a href="../org/jdom/DataConversionException.html" title="class in org.jdom"><code>DataConversionException</code></a></code></div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/DOMOutputter.html#getForceNamespaceAware()">getForceNamespaceAware()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/DOMOutputter.html" title="class in org.jdom.output">DOMOutputter</a></dt>
<dd>
<div class="block">Returns whether DOMs will be constructed with namespaces even when
 the source document has elements all in the empty namespace.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/XMLOutputter.html#getFormat()">getFormat()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/XMLOutputter.html" title="class in org.jdom.output">XMLOutputter</a></dt>
<dd>
<div class="block">Returns the current format in use by the outputter.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getIgnoreTrAXEscapingPIs()">getIgnoreTrAXEscapingPIs()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns whether JAXP TrAX processing instructions for
 disabling/enabling output escaping are ignored.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getIgnoringBoundaryWhitespace()">getIgnoringBoundaryWhitespace()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns whether or not the parser will elminate element content
 containing only whitespace.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getIgnoringBoundaryWhitespace()">getIgnoringBoundaryWhitespace()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns whether or not the parser will elminate element content
 containing only whitespace.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getIgnoringElementContentWhitespace()">getIgnoringElementContentWhitespace()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns whether element content whitespace is to be ignored during the
 build.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXHandler.html#getIgnoringElementContentWhitespace()">getIgnoringElementContentWhitespace()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXHandler.html" title="class in org.jdom.input">SAXHandler</a></dt>
<dd>
<div class="block">Returns whether or not the parser will elminate whitespace in
 element content (sometimes known as "ignorable whitespace") when
 building the document.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getIndent()">getIndent()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns the indent string in use.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/DocType.html#getInternalSubset()">getInternalSubset()</a></span> - Method in class org.jdom.<a href="../org/jdom/DocType.html" title="class in org.jdom">DocType</a></dt>
<dd>
<div class="block">This returns the data for the internal subset.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getIntValue()">getIntValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This gets the value of the attribute, in
 <code>int</code> form, and if no conversion
 can occur, throws a
 <code><a href="../org/jdom/DataConversionException.html" title="class in org.jdom"><code>DataConversionException</code></a></code></div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getLexicalHandler()">getLexicalHandler()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Return the registered <code>LexicalHandler</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/JDOMParseException.html#getLineNumber()">getLineNumber()</a></span> - Method in exception org.jdom.input.<a href="../org/jdom/input/JDOMParseException.html" title="class in org.jdom.input">JDOMParseException</a></dt>
<dd>
<div class="block">Returns the line number of the end of the text where the
 parse error occurred.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getLineSeparator()">getLineSeparator()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns the current line separator.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getLocator()">getLocator()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Returns a JDOMLocator object referencing the node currently
 being processed by this outputter.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getLongValue()">getLongValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This gets the value of the attribute, in
 <code>long</code> form, and if no conversion
 can occur, throws a
 <code><a href="../org/jdom/DataConversionException.html" title="class in org.jdom"><code>DataConversionException</code></a></code></div>
</dd>
<dt><span class="strong"><a href="../org/jdom/JDOMException.html#getMessage()">getMessage()</a></span> - Method in exception org.jdom.<a href="../org/jdom/JDOMException.html" title="class in org.jdom">JDOMException</a></dt>
<dd>
<div class="block">This returns the message for the <code>Exception</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getName()">getName()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will retrieve the local name of the
 <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getName()">getName()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the (local) name of the element (without any namespace prefix).</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/EntityRef.html#getName()">getName()</a></span> - Method in class org.jdom.<a href="../org/jdom/EntityRef.html" title="class in org.jdom">EntityRef</a></dt>
<dd>
<div class="block">This returns the name of the <code>EntityRef</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getNamespace()">getNamespace()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will return this <code>Attribute</code>'s
 <code><a href="../org/jdom/Namespace.html" title="class in org.jdom"><code>Namespace</code></a></code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getNamespace()">getNamespace()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the element's <a href="../org/jdom/Namespace.html" title="class in org.jdom"><code>Namespace</code></a>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getNamespace(java.lang.String)">getNamespace(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the <a href="../org/jdom/Namespace.html" title="class in org.jdom"><code>Namespace</code></a> corresponding to the given prefix in scope
 for this element.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Namespace.html#getNamespace(java.lang.String, java.lang.String)">getNamespace(String, String)</a></span> - Static method in class org.jdom.<a href="../org/jdom/Namespace.html" title="class in org.jdom">Namespace</a></dt>
<dd>
<div class="block">This will retrieve (if in existence) or create (if not) a 
 <code>Namespace</code> for the supplied prefix and URI.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Namespace.html#getNamespace(java.lang.String)">getNamespace(String)</a></span> - Static method in class org.jdom.<a href="../org/jdom/Namespace.html" title="class in org.jdom">Namespace</a></dt>
<dd>
<div class="block">This will retrieve (if in existence) or create (if not) a 
 <code>Namespace</code> for the supplied URI, and make it usable 
 as a default namespace, as no prefix is supplied.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getNamespacePrefix()">getNamespacePrefix()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will retrieve the namespace prefix of the
 <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getNamespacePrefix()">getNamespacePrefix()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the namespace prefix of the element or an empty string if none
 exists.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getNamespaceURI()">getNamespaceURI()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This returns the URI mapped to this <code>Attribute</code>'s
 prefix.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getNamespaceURI()">getNamespaceURI()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the namespace URI mapped to this element's prefix (or the
 in-scope default namespace URI if no prefix).</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/JDOMLocator.html#getNode()">getNode()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/JDOMLocator.html" title="class in org.jdom.output">JDOMLocator</a></dt>
<dd>
<div class="block">Returns the JDOM node being processed by SAXOutputter.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMSource.html#getNodes()">getNodes()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMSource.html" title="class in org.jdom.transform">JDOMSource</a></dt>
<dd>
<div class="block">Returns the source node list used by this TrAX source.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getOmitDeclaration()">getOmitDeclaration()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns whether the XML declaration will be omitted.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getOmitEncoding()">getOmitEncoding()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns whether the XML declaration encoding will be omitted.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getParent()">getParent()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will return the parent of this <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Content.html#getParent()">getParent()</a></span> - Method in class org.jdom.<a href="../org/jdom/Content.html" title="class in org.jdom">Content</a></dt>
<dd>
<div class="block">Return this child's parent, or null if this child is currently
 not attached.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getParent()">getParent()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>&nbsp;</dd>
<dt><span class="strong"><a href="../org/jdom/Parent.html#getParent()">getParent()</a></span> - Method in interface org.jdom.<a href="../org/jdom/Parent.html" title="interface in org.jdom">Parent</a></dt>
<dd>
<div class="block">Return this parent's parent, or null if this parent is currently
 not attached to another parent.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Content.html#getParentElement()">getParentElement()</a></span> - Method in class org.jdom.<a href="../org/jdom/Content.html" title="class in org.jdom">Content</a></dt>
<dd>
<div class="block">A convenience method that returns any parent element for this element,
 or null if the element is unattached or is a root element.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/JDOMParseException.html#getPartialDocument()">getPartialDocument()</a></span> - Method in exception org.jdom.input.<a href="../org/jdom/input/JDOMParseException.html" title="class in org.jdom.input">JDOMParseException</a></dt>
<dd>
<div class="block">Returns the partial document that was successfully built before
 the error occurred.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Namespace.html#getPrefix()">getPrefix()</a></span> - Method in class org.jdom.<a href="../org/jdom/Namespace.html" title="class in org.jdom">Namespace</a></dt>
<dd>
<div class="block">This returns the prefix mapped to this <code>Namespace</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getPrettyFormat()">getPrettyFormat()</a></span> - Static method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns a new Format object that performs whitespace beautification with
 2-space indents, uses the UTF-8 encoding, doesn't expand empty elements,
 includes the declaration and encoding, and uses the default entity
 escape strategy.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getProperty(java.lang.String)">getProperty(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">Returns the object associated with this document under the given "id"
 string, or null if there is no binding or if the binding explicitly
 stored a null value.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getProperty(java.lang.String)">getProperty(String)</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">This will look up the value of a SAX property.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/ProcessingInstruction.html#getPseudoAttributeNames()">getPseudoAttributeNames()</a></span> - Method in class org.jdom.<a href="../org/jdom/ProcessingInstruction.html" title="class in org.jdom">ProcessingInstruction</a></dt>
<dd>
<div class="block">This will return a <code>List</code> containing the names of the
 "attribute" style pieces of name/value pairs in this PI's data.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/ProcessingInstruction.html#getPseudoAttributeValue(java.lang.String)">getPseudoAttributeValue(String)</a></span> - Method in class org.jdom.<a href="../org/jdom/ProcessingInstruction.html" title="class in org.jdom">ProcessingInstruction</a></dt>
<dd>
<div class="block">This will return the value for a specific
 name/value pair on the PI.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/DocType.html#getPublicID()">getPublicID()</a></span> - Method in class org.jdom.<a href="../org/jdom/DocType.html" title="class in org.jdom">DocType</a></dt>
<dd>
<div class="block">This will retrieve the public ID of an externally
 referenced DTD, or an empty <code>String</code> if
 none is referenced.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/EntityRef.html#getPublicID()">getPublicID()</a></span> - Method in class org.jdom.<a href="../org/jdom/EntityRef.html" title="class in org.jdom">EntityRef</a></dt>
<dd>
<div class="block">This will return the publid ID of this <code>EntityRef</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/JDOMParseException.html#getPublicId()">getPublicId()</a></span> - Method in exception org.jdom.input.<a href="../org/jdom/input/JDOMParseException.html" title="class in org.jdom.input">JDOMParseException</a></dt>
<dd>
<div class="block">Returns the public identifier of the entity where the
 parse error occurred.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getQualifiedName()">getQualifiedName()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will retrieve the qualified name of the <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getQualifiedName()">getQualifiedName()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the full name of the element, in the form
 [namespacePrefix]:[localName].</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getRawFormat()">getRawFormat()</a></span> - Static method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns a new Format object that performs no whitespace changes, uses
 the UTF-8 encoding, doesn't expand empty elements, includes the
 declaration and encoding, and uses the default entity escape strategy.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getReportDTDEvents()">getReportDTDEvents()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Returns whether DTD events will be reported.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/SAXOutputter.html#getReportNamespaceDeclarations()">getReportNamespaceDeclarations()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/SAXOutputter.html" title="class in org.jdom.output">SAXOutputter</a></dt>
<dd>
<div class="block">Returns whether attribute namespace declarations shall be reported as
 "xmlns" attributes.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMResult.html#getResult()">getResult()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMResult.html" title="class in org.jdom.transform">JDOMResult</a></dt>
<dd>
<div class="block">Returns the result of an XSL Transformation as a list of JDOM
 nodes.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getReuseParser()">getReuseParser()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns whether the contained SAX parser instance is reused across
 multiple parses.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Document.html#getRootElement()">getRootElement()</a></span> - Method in class org.jdom.<a href="../org/jdom/Document.html" title="class in org.jdom">Document</a></dt>
<dd>
<div class="block">This will return the root <code>Element</code>
 for this <code>Document</code></div>
</dd>
<dt><span class="strong"><a href="../org/jdom/DocType.html#getSystemID()">getSystemID()</a></span> - Method in class org.jdom.<a href="../org/jdom/DocType.html" title="class in org.jdom">DocType</a></dt>
<dd>
<div class="block">This will retrieve the system ID of an externally
 referenced DTD, or an empty <code>String</code> if
 none is referenced.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/EntityRef.html#getSystemID()">getSystemID()</a></span> - Method in class org.jdom.<a href="../org/jdom/EntityRef.html" title="class in org.jdom">EntityRef</a></dt>
<dd>
<div class="block">This will return the system ID of this <code>EntityRef</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/JDOMParseException.html#getSystemId()">getSystemId()</a></span> - Method in exception org.jdom.input.<a href="../org/jdom/input/JDOMParseException.html" title="class in org.jdom.input">JDOMParseException</a></dt>
<dd>
<div class="block">Returns the system identifier of the entity where the
 parse error occurred.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/ProcessingInstruction.html#getTarget()">getTarget()</a></span> - Method in class org.jdom.<a href="../org/jdom/ProcessingInstruction.html" title="class in org.jdom">ProcessingInstruction</a></dt>
<dd>
<div class="block">This will retrieve the target of the PI.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Comment.html#getText()">getText()</a></span> - Method in class org.jdom.<a href="../org/jdom/Comment.html" title="class in org.jdom">Comment</a></dt>
<dd>
<div class="block">This returns the textual data within the <code>Comment</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getText()">getText()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the textual content directly held under this element as a string.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Text.html#getText()">getText()</a></span> - Method in class org.jdom.<a href="../org/jdom/Text.html" title="class in org.jdom">Text</a></dt>
<dd>
<div class="block">This returns the value of this <code>Text</code> node as a Java
 <code>String</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/output/Format.html#getTextMode()">getTextMode()</a></span> - Method in class org.jdom.output.<a href="../org/jdom/output/Format.html" title="class in org.jdom.output">Format</a></dt>
<dd>
<div class="block">Returns the current text output style.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getTextNormalize()">getTextNormalize()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the textual content of this element with all surrounding
 whitespace removed and internal whitespace normalized to a single space.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Text.html#getTextNormalize()">getTextNormalize()</a></span> - Method in class org.jdom.<a href="../org/jdom/Text.html" title="class in org.jdom">Text</a></dt>
<dd>
<div class="block">This returns the textual content with all surrounding whitespace
 removed and internal whitespace normalized to a single space.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getTextTrim()">getTextTrim()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the textual content of this element with all surrounding
 whitespace removed.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Text.html#getTextTrim()">getTextTrim()</a></span> - Method in class org.jdom.<a href="../org/jdom/Text.html" title="class in org.jdom">Text</a></dt>
<dd>
<div class="block">This returns the textual content with all surrounding whitespace
 removed.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Namespace.html#getURI()">getURI()</a></span> - Method in class org.jdom.<a href="../org/jdom/Namespace.html" title="class in org.jdom">Namespace</a></dt>
<dd>
<div class="block">This returns the namespace URI for this <code>Namespace</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getValidation()">getValidation()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns whether validation is to be performed during the build.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Attribute.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Attribute.html" title="class in org.jdom">Attribute</a></dt>
<dd>
<div class="block">This will return the actual textual value of this
 <code>Attribute</code>.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Comment.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Comment.html" title="class in org.jdom">Comment</a></dt>
<dd>
<div class="block">Returns the XPath 1.0 string value of this element, which is the
 text of this comment.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Content.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Content.html" title="class in org.jdom">Content</a></dt>
<dd>
<div class="block">Returns the XPath 1.0 string value of this child.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/DocType.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/DocType.html" title="class in org.jdom">DocType</a></dt>
<dd>
<div class="block">Returns the empty string since doctypes don't have an XPath
 1.0 string value.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Element.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Element.html" title="class in org.jdom">Element</a></dt>
<dd>
<div class="block">Returns the XPath 1.0 string value of this element, which is the
 complete, ordered content of all text node descendants of this element
 (i&#46;e&#46; the text that's left after all references are resolved
 and all other markup is stripped out.)</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/EntityRef.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/EntityRef.html" title="class in org.jdom">EntityRef</a></dt>
<dd>
<div class="block">Returns the empty string since entity references don't have an XPath
 1.0 string value.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/ProcessingInstruction.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/ProcessingInstruction.html" title="class in org.jdom">ProcessingInstruction</a></dt>
<dd>
<div class="block">Returns the XPath 1.0 string value of this element, which is the
 data of this PI.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/Text.html#getValue()">getValue()</a></span> - Method in class org.jdom.<a href="../org/jdom/Text.html" title="class in org.jdom">Text</a></dt>
<dd>
<div class="block">Returns the XPath 1.0 string value of this element, which is the
 text itself.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/input/SAXBuilder.html#getXMLFilter()">getXMLFilter()</a></span> - Method in class org.jdom.input.<a href="../org/jdom/input/SAXBuilder.html" title="class in org.jdom.input">SAXBuilder</a></dt>
<dd>
<div class="block">Returns the <code>XMLFilter</code> used during parsing, or null if none.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/transform/JDOMSource.html#getXMLReader()">getXMLReader()</a></span> - Method in class org.jdom.transform.<a href="../org/jdom/transform/JDOMSource.html" title="class in org.jdom.transform">JDOMSource</a></dt>
<dd>
<div class="block">Returns the XMLReader to be used for the Source.</div>
</dd>
<dt><span class="strong"><a href="../org/jdom/xpath/XPath.html#getXPath()">getXPath()</a></span> - Method in class org.jdom.xpath.<a href="../org/jdom/xpath/XPath.html" title="class in org.jdom.xpath">XPath</a></dt>
<dd>
<div class="block">Returns the wrapped XPath expression as a string.</div>
</dd>
</dl>
<a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">M</a>&nbsp;<a href="index-12.html">N</a>&nbsp;<a href="index-13.html">O</a>&nbsp;<a href="index-14.html">P</a>&nbsp;<a href="index-15.html">R</a>&nbsp;<a href="index-16.html">S</a>&nbsp;<a href="index-17.html">T</a>&nbsp;<a href="index-18.html">U</a>&nbsp;<a href="index-19.html">V</a>&nbsp;<a href="index-20.html">W</a>&nbsp;<a href="index-21.html">X</a>&nbsp;</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><b>JDOM<br><font size='-1'>1.SNAPSHOT</font></b></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-6.html">PREV LETTER</a></li>
<li><a href="index-8.html">NEXT LETTER</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-7.html" target="_top">FRAMES</a></li>
<li><a href="index-7.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright ? 2011 Jason Hunter, Brett McLaughlin. All Rights Reserved.</small></p>
</body>
</html>