This file is indexed.

/usr/share/doc/libjdom2-java/api/org/jdom2/Attribute.html is in libjdom2-java-doc 2.0.6-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
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
<!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.7.0_55) on Sat May 24 05:14:58 UTC 2014 -->
<title>Attribute (JDOM v2.x)</title>
<meta name="date" content="2014-05-24">
<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="Attribute (JDOM v2.x)";
    }
//-->
</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><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Attribute.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><b>JDOM<br><font size='-1'>2.x</font></b></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?org/jdom2/Attribute.html" target="_top">Frames</a></li>
<li><a href="Attribute.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>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.jdom2</div>
<h2 title="Class Attribute" class="title">Class Attribute</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.jdom2.Attribute</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, java.lang.Cloneable, <a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2">NamespaceAware</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">Attribute</span>
extends java.lang.Object
implements <a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2">NamespaceAware</a>, java.io.Serializable, java.lang.Cloneable</pre>
<div class="block">An XML attribute. Methods allow the user to obtain the value of the attribute
 as well as namespace and type information.
 <p>
 <strong>JDOM 1.x Compatibility Note:</strong><br>
 The Attribute class in JDOM 1.x had a number of int Constants declared to
 represent different Attribute Types. JDOM2 has introduced an AttributeType
 enumeration instead. To facilitate compatibility and to simplify JDOM 1.x
 migrations, the replacement AttributeType enums are referenced still using
 the JDOM 1.x constant names. In JDOM 1.x these names referenced constant
 int values. In JDOM2 these names reference Enum constants.</div>
<dl><dt><span class="strong">Author:</span></dt>
  <dd>Brett McLaughlin, Jason Hunter, Elliotte Rusty Harold, Wesley Biggs, Victor Toni, Rolf Lear</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../serialized-form.html#org.jdom2.Attribute">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#CDATA_TYPE">CDATA_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#CDATA"><code>AttributeType.CDATA</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#ENTITIES_TYPE">ENTITIES_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENTITIES"><code>AttributeType.ENTITIES</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#ENTITY_TYPE">ENTITY_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENTITY"><code>AttributeType.ENTITY</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#ENUMERATED_TYPE">ENUMERATED_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENUMERATION"><code>AttributeType.ENUMERATION</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#ID_TYPE">ID_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ID"><code>AttributeType.ID</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#IDREF_TYPE">IDREF_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#IDREF"><code>AttributeType.IDREF</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#IDREFS_TYPE">IDREFS_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#IDREFS"><code>AttributeType.IDREFS</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#name">name</a></strong></code>
<div class="block">The local name of the <code>Attribute</code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#namespace">namespace</a></strong></code>
<div class="block">The <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code> of the <code>Attribute</code></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#NMTOKEN_TYPE">NMTOKEN_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NMTOKEN"><code>AttributeType.NMTOKEN</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#NMTOKENS_TYPE">NMTOKENS_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NMTOKENS"><code>AttributeType.NMTOKENS</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#NOTATION_TYPE">NOTATION_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NOTATION"><code>AttributeType.NOTATION</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#parent">parent</a></strong></code>
<div class="block">The parent to which this Attribute belongs.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#specified">specified</a></strong></code>
<div class="block">Specified attributes are part of the XML,
 unspecified attributes are 'defaulted' from a DTD.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#type">type</a></strong></code>
<div class="block">The type of the <code>Attribute</code></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#UNDECLARED_TYPE">UNDECLARED_TYPE</a></strong></code>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#UNDECLARED"><code>AttributeType.UNDECLARED</code></a></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#value">value</a></strong></code>
<div class="block">The value of the <code>Attribute</code></div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier</th>
<th class="colLast" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected </code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute()">Attribute</a></strong>()</code>
<div class="block">Default, no-args constructor for implementations to use if needed.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value)</code>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name and value, and does not place
 the attribute in a <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type)</code>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value and type, and does not place
 the attribute in a <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType, org.jdom2.Namespace)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type,
         <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</code>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value, and type, and in the provided
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, int)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         int&nbsp;type)</code>
<div class="block"><strong>Deprecated.</strong>&nbsp;
<div class="block"><i>Use <a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType)"><code>Attribute(String, String, AttributeType)</code></a></i></div>
</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, int, org.jdom2.Namespace)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         int&nbsp;type,
         <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</code>
<div class="block"><strong>Deprecated.</strong>&nbsp;
<div class="block"><i>Use <a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType, org.jdom2.Namespace)"><code>Attribute(String, String, AttributeType, Namespace)</code></a>.</i></div>
</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.Namespace)">Attribute</a></strong>(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</code>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name and value, and in the provided
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#clone()">clone</a></strong>()</code>
<div class="block">Return a deep clone of this instance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#detach()">detach</a></strong>()</code>
<div class="block">Detach this Attribute from its parent.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getAttributeType()">getAttributeType</a></strong>()</code>
<div class="block">This will return the declared type of this <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getBooleanValue()">getBooleanValue</a></strong>()</code>
<div class="block">This gets the effective boolean value of the attribute, or throws a
 <code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code> if a conversion can't be
 performed.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Document.html" title="class in org.jdom2">Document</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getDocument()">getDocument</a></strong>()</code>
<div class="block">Get this Attribute's Document.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getDoubleValue()">getDoubleValue</a></strong>()</code>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getFloatValue()">getFloatValue</a></strong>()</code>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getIntValue()">getIntValue</a></strong>()</code>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getLongValue()">getLongValue</a></strong>()</code>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getName()">getName</a></strong>()</code>
<div class="block">This will retrieve the local name of the
 <code>Attribute</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespace()">getNamespace</a></strong>()</code>
<div class="block">This will return this <code>Attribute</code>'s
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespacePrefix()">getNamespacePrefix</a></strong>()</code>
<div class="block">This will retrieve the namespace prefix of the
 <code>Attribute</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespacesInherited()">getNamespacesInherited</a></strong>()</code>
<div class="block">Obtain a list of all namespaces that are in scope for this content, but
 were not introduced by this content.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespacesInScope()">getNamespacesInScope</a></strong>()</code>
<div class="block">Get the namespaces that are in-scope on this Attribute.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespacesIntroduced()">getNamespacesIntroduced</a></strong>()</code>
<div class="block">Obtain a list of all namespaces that are introduced to the XML tree by
 this node.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getNamespaceURI()">getNamespaceURI</a></strong>()</code>
<div class="block">This returns the URI mapped to this <code>Attribute</code>'s
 prefix.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getParent()">getParent</a></strong>()</code>
<div class="block">This will return the parent of this <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getQualifiedName()">getQualifiedName</a></strong>()</code>
<div class="block">This will retrieve the qualified name of the <code>Attribute</code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#getValue()">getValue</a></strong>()</code>
<div class="block">This will return the actual textual value of this
 <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#isSpecified()">isSpecified</a></strong>()</code>
<div class="block">Get the 'specified' flag.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setAttributeType(org.jdom2.AttributeType)">setAttributeType</a></strong>(<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type)</code>
<div class="block">This will set the type of the <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setAttributeType(int)">setAttributeType</a></strong>(int&nbsp;type)</code>
<div class="block"><strong>Deprecated.</strong>&nbsp;
<div class="block"><i>use <a href="../../org/jdom2/Attribute.html#setAttributeType(org.jdom2.AttributeType)"><code>setAttributeType(AttributeType)</code></a></i></div>
</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setName(java.lang.String)">setName</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">This sets the local name of the <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setNamespace(org.jdom2.Namespace)">setNamespace</a></strong>(<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</code>
<div class="block">This sets this <code>Attribute</code>'s <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setParent(org.jdom2.Element)">setParent</a></strong>(<a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a>&nbsp;parent)</code>
<div class="block">Set this Attribute's parent.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setSpecified(boolean)">setSpecified</a></strong>(boolean&nbsp;specified)</code>
<div class="block">Change the specified flag to the given value.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a></code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#setValue(java.lang.String)">setValue</a></strong>(java.lang.String&nbsp;value)</code>
<div class="block">This will set the value of the <code>Attribute</code>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../org/jdom2/Attribute.html#toString()">toString</a></strong>()</code>
<div class="block">This returns a <code>String</code> representation of the
 <code>Attribute</code>, suitable for debugging.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="UNDECLARED_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UNDECLARED_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> UNDECLARED_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#UNDECLARED"><code>AttributeType.UNDECLARED</code></a></div>
</li>
</ul>
<a name="CDATA_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CDATA_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> CDATA_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#CDATA"><code>AttributeType.CDATA</code></a></div>
</li>
</ul>
<a name="ID_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ID_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> ID_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ID"><code>AttributeType.ID</code></a></div>
</li>
</ul>
<a name="IDREF_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>IDREF_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> IDREF_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#IDREF"><code>AttributeType.IDREF</code></a></div>
</li>
</ul>
<a name="IDREFS_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>IDREFS_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> IDREFS_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#IDREFS"><code>AttributeType.IDREFS</code></a></div>
</li>
</ul>
<a name="ENTITY_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ENTITY_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> ENTITY_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENTITY"><code>AttributeType.ENTITY</code></a></div>
</li>
</ul>
<a name="ENTITIES_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ENTITIES_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> ENTITIES_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENTITIES"><code>AttributeType.ENTITIES</code></a></div>
</li>
</ul>
<a name="NMTOKEN_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NMTOKEN_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> NMTOKEN_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NMTOKEN"><code>AttributeType.NMTOKEN</code></a></div>
</li>
</ul>
<a name="NMTOKENS_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NMTOKENS_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> NMTOKENS_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NMTOKENS"><code>AttributeType.NMTOKENS</code></a></div>
</li>
</ul>
<a name="NOTATION_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTATION_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> NOTATION_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#NOTATION"><code>AttributeType.NOTATION</code></a></div>
</li>
</ul>
<a name="ENUMERATED_TYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ENUMERATED_TYPE</h4>
<pre>public static final&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> ENUMERATED_TYPE</pre>
<div class="block">JDOM 1.x compatible reference to <a href="../../org/jdom2/AttributeType.html#ENUMERATION"><code>AttributeType.ENUMERATION</code></a></div>
</li>
</ul>
<a name="name">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>name</h4>
<pre>protected&nbsp;java.lang.String name</pre>
<div class="block">The local name of the <code>Attribute</code></div>
</li>
</ul>
<a name="namespace">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>namespace</h4>
<pre>protected&nbsp;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a> namespace</pre>
<div class="block">The <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code> of the <code>Attribute</code></div>
</li>
</ul>
<a name="value">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>value</h4>
<pre>protected&nbsp;java.lang.String value</pre>
<div class="block">The value of the <code>Attribute</code></div>
</li>
</ul>
<a name="type">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>type</h4>
<pre>protected&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a> type</pre>
<div class="block">The type of the <code>Attribute</code></div>
</li>
</ul>
<a name="specified">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>specified</h4>
<pre>protected&nbsp;boolean specified</pre>
<div class="block">Specified attributes are part of the XML,
 unspecified attributes are 'defaulted' from a DTD.</div>
</li>
</ul>
<a name="parent">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>parent</h4>
<pre>protected transient&nbsp;<a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a> parent</pre>
<div class="block">The parent to which this Attribute belongs. Change it with
 <a href="../../org/jdom2/Attribute.html#setParent(org.jdom2.Element)"><code>setParent(Element)</code></a></div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="Attribute()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>protected&nbsp;Attribute()</pre>
<div class="block">Default, no-args constructor for implementations to use if needed.</div>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String, org.jdom2.Namespace)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>public&nbsp;Attribute(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</pre>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name and value, and in the provided
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd><dd><code>namespace</code> - <code>Namespace</code> namespace for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name or if if the new namespace is the default
         namespace. Attributes cannot be in a default namespace.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>).</dd></dl>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String, int, org.jdom2.Namespace)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>@Deprecated
public&nbsp;Attribute(java.lang.String&nbsp;name,
                    java.lang.String&nbsp;value,
                    int&nbsp;type,
                    <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</pre>
<div class="block"><span class="strong">Deprecated.</span>&nbsp;<i>Use <a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType, org.jdom2.Namespace)"><code>Attribute(String, String, AttributeType, Namespace)</code></a>.</i></div>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value, and type, and in the provided
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd><dd><code>type</code> - <code>int</code> type for new attribute.</dd><dd><code>namespace</code> - <code>Namespace</code> namespace for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name or if if the new namespace is the default
         namespace. Attributes cannot be in a default namespace.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>) or
         if the given attribute type is not one of the
         supported types.</dd></dl>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType, org.jdom2.Namespace)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>public&nbsp;Attribute(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type,
         <a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</pre>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value, and type, and in the provided
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd><dd><code>type</code> - <code>AttributeType</code> for new attribute.</dd><dd><code>namespace</code> - <code>Namespace</code> namespace for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name or if if the new namespace is the default
         namespace. Attributes cannot be in a default namespace.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>) or
         if the given attribute type is not one of the
         supported types.</dd></dl>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>public&nbsp;Attribute(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value)</pre>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name and value, and does not place
 the attribute in a <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.
 <p>
 <b>Note</b>: This actually explicitly puts the
 <code>Attribute</code> in the "empty" <code>Namespace</code>
 (<code><a href="../../org/jdom2/Namespace.html#NO_NAMESPACE"><code>Namespace.NO_NAMESPACE</code></a></code>).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>).</dd></dl>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Attribute</h4>
<pre>public&nbsp;Attribute(java.lang.String&nbsp;name,
         java.lang.String&nbsp;value,
         <a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type)</pre>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value and type, and does not place
 the attribute in a <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.
 <p>
 <b>Note</b>: This actually explicitly puts the
 <code>Attribute</code> in the "empty" <code>Namespace</code>
 (<code><a href="../../org/jdom2/Namespace.html#NO_NAMESPACE"><code>Namespace.NO_NAMESPACE</code></a></code>).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd><dd><code>type</code> - <code>AttributeType</code> for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>) or
         if the given attribute type is not one of the
         supported types.</dd></dl>
</li>
</ul>
<a name="Attribute(java.lang.String, java.lang.String, int)">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Attribute</h4>
<pre>@Deprecated
public&nbsp;Attribute(java.lang.String&nbsp;name,
                    java.lang.String&nbsp;value,
                    int&nbsp;type)</pre>
<div class="block"><span class="strong">Deprecated.</span>&nbsp;<i>Use <a href="../../org/jdom2/Attribute.html#Attribute(java.lang.String, java.lang.String, org.jdom2.AttributeType)"><code>Attribute(String, String, AttributeType)</code></a></i></div>
<div class="block">This will create a new <code>Attribute</code> with the
 specified (local) name, value and type, and does not place
 the attribute in a <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.
 <p>
 <b>Note</b>: This actually explicitly puts the
 <code>Attribute</code> in the "empty" <code>Namespace</code>
 (<code><a href="../../org/jdom2/Namespace.html#NO_NAMESPACE"><code>Namespace.NO_NAMESPACE</code></a></code>).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - <code>String</code> name of <code>Attribute</code>.</dd><dd><code>value</code> - <code>String</code> value for new attribute.</dd><dd><code>type</code> - <code>int</code> type for new attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name.</dd>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>) or
         if the given attribute type is not one of the
         supported types.</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getParent()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getParent</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a>&nbsp;getParent()</pre>
<div class="block">This will return the parent of this <code>Attribute</code>.
 If there is no parent, then this returns <code>null</code>.
 Use return-type covariance to override Content's getParent() method
 to return an Element, not just a Parent</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>parent of this <code>Attribute</code></dd></dl>
</li>
</ul>
<a name="getDocument()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDocument</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Document.html" title="class in org.jdom2">Document</a>&nbsp;getDocument()</pre>
<div class="block">Get this Attribute's Document.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The document to which this Attribute is associated, may be null.</dd></dl>
</li>
</ul>
<a name="getName()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getName</h4>
<pre>public&nbsp;java.lang.String&nbsp;getName()</pre>
<div class="block">This will retrieve the local name of the
 <code>Attribute</code>. For any XML attribute
 which appears as
 <code>[namespacePrefix]:[attributeName]</code>,
 the local name of the attribute would be
 <code>[attributeName]</code>. When the attribute
 has no namespace, the local name is simply the attribute
 name.
 <p>
 To obtain the namespace prefix for this
 attribute, the
 <code><a href="../../org/jdom2/Attribute.html#getNamespacePrefix()"><code>getNamespacePrefix()</code></a></code>
 method should be used.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>String</code> - name of this attribute,
                               without any namespace prefix.</dd></dl>
</li>
</ul>
<a name="setName(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setName</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setName(java.lang.String&nbsp;name)</pre>
<div class="block">This sets the local name of the <code>Attribute</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the new local name to set</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>Attribute</code> - the attribute modified.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the given name is illegal as an
         attribute name.</dd></dl>
</li>
</ul>
<a name="getQualifiedName()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getQualifiedName</h4>
<pre>public&nbsp;java.lang.String&nbsp;getQualifiedName()</pre>
<div class="block">This will retrieve the qualified name of the <code>Attribute</code>.
 For any XML attribute whose name is
 <code>[namespacePrefix]:[elementName]</code>,
 the qualified name of the attribute would be
 everything (both namespace prefix and
 element name). When the attribute has no
 namespace, the qualified name is simply the attribute's
 local name.
 <p>
 To obtain the local name of the attribute, the
 <code><a href="../../org/jdom2/Attribute.html#getName()"><code>getName()</code></a></code> method should be used.
 <p>
 To obtain the namespace prefix for this attribute,
 the <code><a href="../../org/jdom2/Attribute.html#getNamespacePrefix()"><code>getNamespacePrefix()</code></a></code>
 method should be used.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>String</code> - full name for this element.</dd></dl>
</li>
</ul>
<a name="getNamespacePrefix()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamespacePrefix</h4>
<pre>public&nbsp;java.lang.String&nbsp;getNamespacePrefix()</pre>
<div class="block">This will retrieve the namespace prefix of the
 <code>Attribute</code>. For any XML attribute
 which appears as
 <code>[namespacePrefix]:[attributeName]</code>,
 the namespace prefix of the attribute would be
 <code>[namespacePrefix]</code>. When the attribute
 has no namespace, an empty <code>String</code> is returned.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>String</code> - namespace prefix of this
                               attribute.</dd></dl>
</li>
</ul>
<a name="getNamespaceURI()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamespaceURI</h4>
<pre>public&nbsp;java.lang.String&nbsp;getNamespaceURI()</pre>
<div class="block">This returns the URI mapped to this <code>Attribute</code>'s
 prefix. If no mapping is found, an empty <code>String</code> is
 returned.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>String</code> - namespace URI for this <code>Attribute</code>.</dd></dl>
</li>
</ul>
<a name="getNamespace()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamespace</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;getNamespace()</pre>
<div class="block">This will return this <code>Attribute</code>'s
 <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>Namespace</code> - Namespace object for this <code>Attribute</code></dd></dl>
</li>
</ul>
<a name="setNamespace(org.jdom2.Namespace)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNamespace</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setNamespace(<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&nbsp;namespace)</pre>
<div class="block">This sets this <code>Attribute</code>'s <code><a href="../../org/jdom2/Namespace.html" title="class in org.jdom2"><code>Namespace</code></a></code>.
 If the provided namespace is null, the attribute will have no namespace.
 The namespace must have a prefix.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>namespace</code> - the new namespace</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>Element</code> - the element modified.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalNameException.html" title="class in org.jdom2">IllegalNameException</a></code> - if the new namespace is the default
         namespace. Attributes cannot be in a default namespace.</dd></dl>
</li>
</ul>
<a name="getValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValue</h4>
<pre>public&nbsp;java.lang.String&nbsp;getValue()</pre>
<div class="block">This will return the actual textual value of this
 <code>Attribute</code>.  This will include all text
 within the quotation marks.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>String</code> - value for this attribute.</dd></dl>
</li>
</ul>
<a name="setValue(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setValue</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setValue(java.lang.String&nbsp;value)</pre>
<div class="block">This will set the value of the <code>Attribute</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>value</code> - <code>String</code> value for the attribute.</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>Attribute</code> - this Attribute modified.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute value is
         illegal character data (as determined by
         <a href="../../org/jdom2/Verifier.html#checkCharacterData(java.lang.String)"><code>Verifier.checkCharacterData(java.lang.String)</code></a>).</dd></dl>
</li>
</ul>
<a name="getAttributeType()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAttributeType</h4>
<pre>public&nbsp;<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;getAttributeType()</pre>
<div class="block">This will return the declared type of this <code>Attribute</code>.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>AttributeType</code> - type for this attribute.</dd></dl>
</li>
</ul>
<a name="setAttributeType(org.jdom2.AttributeType)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAttributeType</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setAttributeType(<a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2">AttributeType</a>&nbsp;type)</pre>
<div class="block">This will set the type of the <code>Attribute</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>type</code> - <code>int</code> type for the attribute.</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>Attribute</code> - this Attribute modified.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute type is
         not one of the supported types.</dd></dl>
</li>
</ul>
<a name="setAttributeType(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAttributeType</h4>
<pre>@Deprecated
public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setAttributeType(int&nbsp;type)</pre>
<div class="block"><span class="strong">Deprecated.</span>&nbsp;<i>use <a href="../../org/jdom2/Attribute.html#setAttributeType(org.jdom2.AttributeType)"><code>setAttributeType(AttributeType)</code></a></i></div>
<div class="block">This will set the type of the <code>Attribute</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>type</code> - <code>int</code> type for the attribute.</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>Attribute</code> - this Attribute modified.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/IllegalDataException.html" title="class in org.jdom2">IllegalDataException</a></code> - if the given attribute type is
         not one of the supported types.</dd></dl>
</li>
</ul>
<a name="isSpecified()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isSpecified</h4>
<pre>public&nbsp;boolean&nbsp;isSpecified()</pre>
<div class="block">Get the 'specified' flag. True values indicate this attribute
 was part of an XML document, false indicates it was defaulted
 from a DTD.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the specified flag.</dd><dt><span class="strong">Since:</span></dt>
  <dd>JDOM2</dd></dl>
</li>
</ul>
<a name="setSpecified(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSpecified</h4>
<pre>public&nbsp;void&nbsp;setSpecified(boolean&nbsp;specified)</pre>
<div class="block">Change the specified flag to the given value.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>specified</code> - The value to set the specified flag to.</dd><dt><span class="strong">Since:</span></dt>
  <dd>JDOM2</dd></dl>
</li>
</ul>
<a name="toString()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toString()</pre>
<div class="block">This returns a <code>String</code> representation of the
 <code>Attribute</code>, suitable for debugging.</div>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd>
<dt><span class="strong">Returns:</span></dt><dd><code>String</code> - information about the
         <code>Attribute</code></dd></dl>
</li>
</ul>
<a name="clone()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clone</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;clone()</pre>
<div class="block">Return a deep clone of this instance. Even if this instance has a parent,
 the returned clone will not.
 <p>
 All JDOM core classes are Cloneable, and never throw
 CloneNotSupportedException. Additionally all Cloneable JDOM classes
 return the correct type of instance from this method and there is no
 need to cast the result (co-variant return vaue).
 <p>
 Subclasses of this should still call super.clone() in their clone method.</div>
</li>
</ul>
<a name="detach()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>detach</h4>
<pre>public&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;detach()</pre>
<div class="block">Detach this Attribute from its parent.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>this Attribute (detached).</dd></dl>
</li>
</ul>
<a name="setParent(org.jdom2.Element)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setParent</h4>
<pre>protected&nbsp;<a href="../../org/jdom2/Attribute.html" title="class in org.jdom2">Attribute</a>&nbsp;setParent(<a href="../../org/jdom2/Element.html" title="class in org.jdom2">Element</a>&nbsp;parent)</pre>
<div class="block">Set this Attribute's parent. This is not public!</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>parent</code> - The parent to set</dd>
<dt><span class="strong">Returns:</span></dt><dd>this Attribute (state may be indeterminate depending on whether
 this has been included in the Element's list yet).</dd></dl>
</li>
</ul>
<a name="getIntValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIntValue</h4>
<pre>public&nbsp;int&nbsp;getIntValue()
                throws <a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></pre>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>int</code> value of attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></code> - when conversion fails.</dd></dl>
</li>
</ul>
<a name="getLongValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLongValue</h4>
<pre>public&nbsp;long&nbsp;getLongValue()
                  throws <a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></pre>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>long</code> value of attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></code> - when conversion fails.</dd></dl>
</li>
</ul>
<a name="getFloatValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFloatValue</h4>
<pre>public&nbsp;float&nbsp;getFloatValue()
                    throws <a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></pre>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>float</code> value of attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></code> - when conversion fails.</dd></dl>
</li>
</ul>
<a name="getDoubleValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDoubleValue</h4>
<pre>public&nbsp;double&nbsp;getDoubleValue()
                      throws <a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></pre>
<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/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code></div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>double</code> value of attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></code> - when conversion fails.</dd></dl>
</li>
</ul>
<a name="getBooleanValue()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBooleanValue</h4>
<pre>public&nbsp;boolean&nbsp;getBooleanValue()
                        throws <a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></pre>
<div class="block">This gets the effective boolean value of the attribute, or throws a
 <code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2"><code>DataConversionException</code></a></code> if a conversion can't be
 performed.  True values are: "true", "on", "1", and "yes".  False
 values are: "false", "off", "0", and "no".  Values are trimmed before
 comparison.  Values other than those listed here throw the exception.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>boolean</code> value of attribute.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../org/jdom2/DataConversionException.html" title="class in org.jdom2">DataConversionException</a></code> - when conversion fails.</dd></dl>
</li>
</ul>
<a name="getNamespacesInScope()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamespacesInScope</h4>
<pre>public&nbsp;java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;&nbsp;getNamespacesInScope()</pre>
<div class="block">Get the namespaces that are in-scope on this Attribute.
 <p>
 Attribute has peculiarities that affect the in-scope Namespaces because
 there are conditions in which the Attribute's scope is different to its
 parent Element's scope. Specifically, if the parent Element is in a
 'default' Namespace that is not the empty Namespace (e.g.
 xmlns="someurl") and this Attribute is also in the default Namespace (has
 no prefix - but for Attributes that means the Namespace URL is ""), then
 this Attribute has a different namespace scope from it's parent Element
 because it does not include the 'someurl' Namespace.
 <p>
 In the above conditions (no-prefix Attribute in an Element with a
 non-empty no-prefix Namespace) this Attribute effectively re-binds the ""
 prefix to the "" URL, thus the Attribute 'introduces' the Namespace.
 It follows then that the getNamespacesIntroduced() will return a list
 with the single member <a href="../../org/jdom2/Namespace.html#NO_NAMESPACE"><code>Namespace.NO_NAMESPACE</code></a>.
 <p>
 Note that the Attribute's Namespace will always be reported first.
 <p>
 <strong>Description copied from</strong>
 <a href="../../org/jdom2/NamespaceAware.html#getNamespacesInScope()"><code>NamespaceAware.getNamespacesInScope()</code></a>:
 <p>
 Obtain a list of all namespaces that are in scope for the current
 content.
 <p>
 The contents of this list will always be the combination of
 getNamespacesIntroduced() and getNamespacesInherited().
 <p>
 See <a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2"><code>NamespaceAware</code></a> documentation for details on what the order of the
 Namespaces will be in the returned list.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../org/jdom2/NamespaceAware.html#getNamespacesInScope()">getNamespacesInScope</a></code>&nbsp;in interface&nbsp;<code><a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2">NamespaceAware</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>a read-only list of Namespaces.</dd></dl>
</li>
</ul>
<a name="getNamespacesIntroduced()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamespacesIntroduced</h4>
<pre>public&nbsp;java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;&nbsp;getNamespacesIntroduced()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../org/jdom2/NamespaceAware.html#getNamespacesIntroduced()">NamespaceAware</a></code></strong></div>
<div class="block">Obtain a list of all namespaces that are introduced to the XML tree by
 this node. Only Elements and Attributes can introduce namespaces, so all
 other Content types will return an empty list.
 <p>
 The contents of this list will always be a subset (but in the same order)
 of getNamespacesInScope(), and will never intersect
 getNamspacesInherited()</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../org/jdom2/NamespaceAware.html#getNamespacesIntroduced()">getNamespacesIntroduced</a></code>&nbsp;in interface&nbsp;<code><a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2">NamespaceAware</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>a read-only list of Namespaces.</dd></dl>
</li>
</ul>
<a name="getNamespacesInherited()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getNamespacesInherited</h4>
<pre>public&nbsp;java.util.List&lt;<a href="../../org/jdom2/Namespace.html" title="class in org.jdom2">Namespace</a>&gt;&nbsp;getNamespacesInherited()</pre>
<div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../org/jdom2/NamespaceAware.html#getNamespacesInherited()">NamespaceAware</a></code></strong></div>
<div class="block">Obtain a list of all namespaces that are in scope for this content, but
 were not introduced by this content.
 <p>
 The contents of this list will always be a subset (but in the same order)
 of getNamespacesInScope(), and will never intersect
 getNamspacesIntroduced()</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../org/jdom2/NamespaceAware.html#getNamespacesInherited()">getNamespacesInherited</a></code>&nbsp;in interface&nbsp;<code><a href="../../org/jdom2/NamespaceAware.html" title="interface in org.jdom2">NamespaceAware</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>a read-only list of Namespaces.</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= 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><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Attribute.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><b>JDOM<br><font size='-1'>2.x</font></b></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../org/jdom2/AttributeType.html" title="enum in org.jdom2"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?org/jdom2/Attribute.html" target="_top">Frames</a></li>
<li><a href="Attribute.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>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright ? 2014 Jason Hunter, Brett McLaughlin. All Rights Reserved.</small></p>
</body>
</html>