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 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
|
#Signature file v4.1
#Version 1.40.0
CLSS public abstract interface java.io.Serializable
CLSS public abstract interface java.lang.Comparable<%0 extends java.lang.Object>
meth public abstract int compareTo({java.lang.Comparable%0})
CLSS public abstract java.lang.Enum<%0 extends java.lang.Enum<{java.lang.Enum%0}>>
cons protected init(java.lang.String,int)
intf java.io.Serializable
intf java.lang.Comparable<{java.lang.Enum%0}>
meth protected final java.lang.Object clone() throws java.lang.CloneNotSupportedException
meth protected final void finalize()
meth public final boolean equals(java.lang.Object)
meth public final int compareTo({java.lang.Enum%0})
meth public final int hashCode()
meth public final int ordinal()
meth public final java.lang.Class<{java.lang.Enum%0}> getDeclaringClass()
meth public final java.lang.String name()
meth public java.lang.String toString()
meth public static <%0 extends java.lang.Enum<{%%0}>> {%%0} valueOf(java.lang.Class<{%%0}>,java.lang.String)
supr java.lang.Object
hfds name,ordinal
CLSS public java.lang.Object
cons public init()
meth protected java.lang.Object clone() throws java.lang.CloneNotSupportedException
meth protected void finalize() throws java.lang.Throwable
meth public boolean equals(java.lang.Object)
meth public final java.lang.Class<?> getClass()
meth public final void notify()
meth public final void notifyAll()
meth public final void wait() throws java.lang.InterruptedException
meth public final void wait(long) throws java.lang.InterruptedException
meth public final void wait(long,int) throws java.lang.InterruptedException
meth public int hashCode()
meth public java.lang.String toString()
CLSS public abstract interface org.netbeans.modules.xml.schema.model.All
fld public final static java.lang.String ELEMENT_PROPERTY = "element"
fld public final static java.lang.String ELEMENT_REFERENCE_PROPERTY = "elementReference"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
intf org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.LocalGroupDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean allowsFullMultiplicity()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.ElementReference> getElementReferences()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.LocalElement> getElements()
meth public abstract org.netbeans.modules.xml.schema.model.Occur$ZeroOne getMinOccurs()
meth public abstract org.netbeans.modules.xml.schema.model.Occur$ZeroOne getMinOccursDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Occur$ZeroOne getMinOccursEffective()
meth public abstract void addElement(org.netbeans.modules.xml.schema.model.LocalElement)
meth public abstract void addElementReference(org.netbeans.modules.xml.schema.model.ElementReference)
meth public abstract void removeElement(org.netbeans.modules.xml.schema.model.LocalElement)
meth public abstract void removeElementReference(org.netbeans.modules.xml.schema.model.ElementReference)
meth public abstract void setMinOccurs(org.netbeans.modules.xml.schema.model.Occur$ZeroOne)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Annotation
fld public final static java.lang.String APPINFO_PROPERTY = "appinfo"
fld public final static java.lang.String DOCUMENTATION_PROPERTY = "documentation"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.AppInfo> getAppInfos()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Documentation> getDocumentationElements()
meth public abstract void addAppInfo(org.netbeans.modules.xml.schema.model.AppInfo)
meth public abstract void addDocumentation(org.netbeans.modules.xml.schema.model.Documentation)
meth public abstract void removeAppInfo(org.netbeans.modules.xml.schema.model.AppInfo)
meth public abstract void removeDocumentation(org.netbeans.modules.xml.schema.model.Documentation)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Any
fld public final static java.lang.String NAMESPACE_PROPERTY = "namespace"
fld public final static java.lang.String PROCESS_CONTENTS_PROPERTY = "processContents"
innr public final static !enum ProcessContents
meth public abstract java.lang.String getNameSpaceEffective()
meth public abstract java.lang.String getNamespace()
meth public abstract java.lang.String getNamespaceDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Any$ProcessContents getProcessContents()
meth public abstract org.netbeans.modules.xml.schema.model.Any$ProcessContents getProcessContentsDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Any$ProcessContents getProcessContentsEffective()
meth public abstract void setNamespace(java.lang.String)
meth public abstract void setProcessContents(org.netbeans.modules.xml.schema.model.Any$ProcessContents)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Any$ProcessContents
outer org.netbeans.modules.xml.schema.model.Any
fld public final static org.netbeans.modules.xml.schema.model.Any$ProcessContents LAX
fld public final static org.netbeans.modules.xml.schema.model.Any$ProcessContents SKIP
fld public final static org.netbeans.modules.xml.schema.model.Any$ProcessContents STRICT
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Any$ProcessContents valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Any$ProcessContents[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Any$ProcessContents>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.AnyAttribute
intf org.netbeans.modules.xml.schema.model.Any
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.AnyElement
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
intf org.netbeans.modules.xml.schema.model.Any
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
meth public abstract int getMinOccursDefault()
meth public abstract int getMinOccursEffective()
meth public abstract java.lang.Integer getMinOccurs()
meth public abstract java.lang.String getMaxOccurs()
meth public abstract java.lang.String getMaxOccursDefault()
meth public abstract java.lang.String getMaxOccursEffective()
meth public abstract void setMaxOccurs(java.lang.String)
meth public abstract void setMinOccurs(java.lang.Integer)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.AppInfo
fld public final static java.lang.String CONTENT_PROPERTY = "content"
fld public final static java.lang.String SOURCE_PROPERTY = "source"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getContentFragment()
meth public abstract java.lang.String getURI()
meth public abstract org.w3c.dom.Element getAppInfoElement()
meth public abstract void setAppInfoElement(org.w3c.dom.Element)
meth public abstract void setContentFragment(java.lang.String) throws java.io.IOException
meth public abstract void setURI(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Attribute
fld public final static java.lang.String DEFAULT_PROPERTY = "default"
fld public final static java.lang.String FIXED_PROPERTY = "fixed"
fld public final static java.lang.String INLINE_TYPE_PROPERTY = "inlineType"
fld public final static java.lang.String TYPE_PROPERTY = "type"
innr public final static !enum Use
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getDefault()
meth public abstract java.lang.String getFixed()
meth public abstract void setDefault(java.lang.String)
meth public abstract void setFixed(java.lang.String)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Attribute$Use
outer org.netbeans.modules.xml.schema.model.Attribute
fld public final static org.netbeans.modules.xml.schema.model.Attribute$Use OPTIONAL
fld public final static org.netbeans.modules.xml.schema.model.Attribute$Use PROHIBITED
fld public final static org.netbeans.modules.xml.schema.model.Attribute$Use REQUIRED
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Attribute$Use valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Attribute$Use[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Attribute$Use>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.AttributeGroupReference
fld public final static java.lang.String GROUP_PROPERTY = "group"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalAttributeGroup> getGroup()
meth public abstract void setGroup(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalAttributeGroup>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.AttributeReference
fld public final static java.lang.String FORM_PROPERTY = "form"
fld public final static java.lang.String REF_PROPERTY = "ref"
fld public final static java.lang.String USE_PROPERTY = "use"
intf org.netbeans.modules.xml.schema.model.Attribute
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUse()
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUseDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUseEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getForm()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormEffective()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalAttribute> getRef()
meth public abstract void setForm(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setRef(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalAttribute>)
meth public abstract void setUse(org.netbeans.modules.xml.schema.model.Attribute$Use)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.BoundaryFacet
fld public final static java.lang.String FIXED_PROPERTY = "fixed"
fld public final static java.lang.String VALUE_PROPERTY = "value"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getFixedDefault()
meth public abstract boolean getFixedEffective()
meth public abstract java.lang.Boolean isFixed()
meth public abstract java.lang.String getValue()
meth public abstract void setFixed(java.lang.Boolean)
meth public abstract void setValue(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Cardinality
meth public abstract int getMinOccursDefault()
meth public abstract int getMinOccursEffective()
meth public abstract java.lang.Integer getMinOccurs()
meth public abstract java.lang.String getMaxOccurs()
meth public abstract java.lang.String getMaxOccursDefault()
meth public abstract java.lang.String getMaxOccursEffective()
meth public abstract void setMaxOccurs(java.lang.String)
meth public abstract void setMinOccurs(java.lang.Integer)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Choice
fld public final static java.lang.String ANY_PROPERTY = "any"
fld public final static java.lang.String CHOICE_PROPERTY = "choice"
fld public final static java.lang.String ELEMENT_REFERENCE_PROPERTY = "elementReference"
fld public final static java.lang.String GROUP_REF_PROPERTY = "groupReference"
fld public final static java.lang.String LOCAL_ELEMENT_PROPERTY = "localElememnt"
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
fld public final static java.lang.String SEQUENCE_PROPERTY = "sequence"
intf org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.LocalGroupDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.AnyElement> getAnys()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Choice> getChoices()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.ElementReference> getElementReferences()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GroupReference> getGroupReferences()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.LocalElement> getLocalElements()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Sequence> getSequences()
meth public abstract org.netbeans.modules.xml.schema.model.Cardinality getCardinality()
meth public abstract void addAny(org.netbeans.modules.xml.schema.model.AnyElement)
meth public abstract void addChoice(org.netbeans.modules.xml.schema.model.Choice)
meth public abstract void addElementReference(org.netbeans.modules.xml.schema.model.ElementReference)
meth public abstract void addGroupReference(org.netbeans.modules.xml.schema.model.GroupReference)
meth public abstract void addLocalElement(org.netbeans.modules.xml.schema.model.LocalElement)
meth public abstract void addSequence(org.netbeans.modules.xml.schema.model.Sequence)
meth public abstract void removeAny(org.netbeans.modules.xml.schema.model.AnyElement)
meth public abstract void removeChoice(org.netbeans.modules.xml.schema.model.Choice)
meth public abstract void removeElementReference(org.netbeans.modules.xml.schema.model.ElementReference)
meth public abstract void removeGroupReference(org.netbeans.modules.xml.schema.model.GroupReference)
meth public abstract void removeLocalElement(org.netbeans.modules.xml.schema.model.LocalElement)
meth public abstract void removeSequence(org.netbeans.modules.xml.schema.model.Sequence)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexContent
fld public final static java.lang.String LOCAL_DEFINITION_PROPERTY = "localDefinition"
fld public final static java.lang.String MIXED_PROPERTY = "mixed"
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getMixedDefault()
meth public abstract boolean getMixedEffective()
meth public abstract java.lang.Boolean isMixed()
meth public abstract org.netbeans.modules.xml.schema.model.ComplexContentDefinition getLocalDefinition()
meth public abstract void setLocalDefinition(org.netbeans.modules.xml.schema.model.ComplexContentDefinition)
meth public abstract void setMixed(java.lang.Boolean)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexContentDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexContentRestriction
fld public final static java.lang.String BASE_PROPERTY = "base"
fld public final static java.lang.String DEFINITION_CHANGED_PROPERTY = "definition"
intf org.netbeans.modules.xml.schema.model.ComplexContentDefinition
intf org.netbeans.modules.xml.schema.model.LocalAttributeContainer
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.ComplexTypeDefinition getDefinition()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalComplexType> getBase()
meth public abstract void setBase(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalComplexType>)
meth public abstract void setDefinition(org.netbeans.modules.xml.schema.model.ComplexTypeDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexExtension
fld public final static java.lang.String LOCAL_DEFINITION_PROPERTY = "localDefinition"
intf org.netbeans.modules.xml.schema.model.ComplexContentDefinition
intf org.netbeans.modules.xml.schema.model.Extension
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition getLocalDefinition()
meth public abstract void setLocalDefinition(org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexType
fld public final static java.lang.String DEFINITION_PROPERTY = "definition"
fld public final static java.lang.String MIXED_PROPERTY = "mixed"
intf org.netbeans.modules.xml.schema.model.LocalAttributeContainer
meth public abstract boolean getMixedDefault()
meth public abstract boolean getMixedEffective()
meth public abstract java.lang.Boolean isMixed()
meth public abstract org.netbeans.modules.xml.schema.model.ComplexTypeDefinition getDefinition()
meth public abstract void setDefinition(org.netbeans.modules.xml.schema.model.ComplexTypeDefinition)
meth public abstract void setMixed(java.lang.Boolean)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Constraint
fld public final static java.lang.String FIELD_PROPERTY = "field"
fld public final static java.lang.String SELECTOR_PROPERTY = "selector"
intf org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Field> getFields()
meth public abstract org.netbeans.modules.xml.schema.model.Selector getSelector()
meth public abstract void addField(org.netbeans.modules.xml.schema.model.Field)
meth public abstract void deleteField(org.netbeans.modules.xml.schema.model.Field)
meth public abstract void setSelector(org.netbeans.modules.xml.schema.model.Selector)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Derivation
innr public final static !enum Type
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Derivation$Type
outer org.netbeans.modules.xml.schema.model.Derivation
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type ALL
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type EMPTY
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type LIST
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type RESTRICTION
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type SUBSTITUTION
fld public final static org.netbeans.modules.xml.schema.model.Derivation$Type UNION
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Derivation$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Derivation$Type[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Derivation$Type>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Documentation
fld public final static java.lang.String CONTENT_PROPERTY = "content"
fld public final static java.lang.String LANGUAGE_PROPERTY = "language"
fld public final static java.lang.String SOURCE_PROPERTY = "source"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getContent()
meth public abstract java.lang.String getContentFragment()
meth public abstract java.lang.String getLanguage()
meth public abstract java.lang.String getSource()
meth public abstract org.w3c.dom.Element getDocumentationElement()
meth public abstract void setContent(java.lang.String)
meth public abstract void setContentFragment(java.lang.String) throws java.io.IOException
meth public abstract void setDocumentationElement(org.w3c.dom.Element)
meth public abstract void setLanguage(java.lang.String)
meth public abstract void setSource(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Element
fld public final static java.lang.String BLOCK_PROPERTY = "block"
fld public final static java.lang.String CONSTRAINT_PROPERTY = "constraint"
fld public final static java.lang.String DEFAULT_PROPERTY = "default"
fld public final static java.lang.String FIXED_PROPERTY = "fixed"
fld public final static java.lang.String NILLABLE_PROPERTY = "nillable"
fld public final static java.lang.String REF_PROPERTY = "ref"
innr public final static !enum Block
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getNillableDefault()
meth public abstract boolean getNillableEffective()
meth public abstract java.lang.Boolean isNillable()
meth public abstract java.lang.String getDefault()
meth public abstract java.lang.String getFixed()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Constraint> getConstraints()
meth public abstract void addConstraint(org.netbeans.modules.xml.schema.model.Constraint)
meth public abstract void removeConstraint(org.netbeans.modules.xml.schema.model.Constraint)
meth public abstract void setDefault(java.lang.String)
meth public abstract void setFixed(java.lang.String)
meth public abstract void setNillable(java.lang.Boolean)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Element$Block
outer org.netbeans.modules.xml.schema.model.Element
fld public final static org.netbeans.modules.xml.schema.model.Element$Block ALL
fld public final static org.netbeans.modules.xml.schema.model.Element$Block EMPTY
fld public final static org.netbeans.modules.xml.schema.model.Element$Block EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.Element$Block RESTRICTION
fld public final static org.netbeans.modules.xml.schema.model.Element$Block SUBSTITUTION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Element$Block valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Element$Block[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Element$Block>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ElementReference
fld public final static java.lang.String FORM_PROPERTY = "form"
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
intf org.netbeans.modules.xml.schema.model.Element
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
meth public abstract boolean allowsFullMultiplicity()
meth public abstract int getMinOccursDefault()
meth public abstract int getMinOccursEffective()
meth public abstract java.lang.Integer getMinOccurs()
meth public abstract java.lang.String getMaxOccurs()
meth public abstract java.lang.String getMaxOccursDefault()
meth public abstract java.lang.String getMaxOccursEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getForm()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormEffective()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalElement> getRef()
meth public abstract void setForm(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setMaxOccurs(java.lang.String)
meth public abstract void setMinOccurs(java.lang.Integer)
meth public abstract void setRef(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalElement>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Enumeration
fld public final static java.lang.String VALUE_PROPERTY = "value"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getValue()
meth public abstract void setValue(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Extension
fld public final static java.lang.String BASE_PROPERTY = "base"
intf org.netbeans.modules.xml.schema.model.LocalAttributeContainer
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalType> getBase()
meth public abstract void setBase(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Field
fld public final static java.lang.String XPATH_PROPERTY = "xPath"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getXPath()
meth public abstract void setXPath(java.lang.String)
CLSS public final !enum org.netbeans.modules.xml.schema.model.Form
fld public final static org.netbeans.modules.xml.schema.model.Form QUALIFIED
fld public final static org.netbeans.modules.xml.schema.model.Form UNQUALIFIED
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Form valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Form[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Form>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.FractionDigits
intf org.netbeans.modules.xml.schema.model.LengthFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalAttribute
intf org.netbeans.modules.xml.schema.model.Attribute
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.LocalSimpleType getInlineType()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getType()
meth public abstract void setInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void setType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalAttributeGroup
intf org.netbeans.modules.xml.schema.model.LocalAttributeContainer
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalComplexType
fld public final static java.lang.String ABSTRACT_PROPERTY = "abstract"
fld public final static java.lang.String BLOCK_PROPERTY = "block"
fld public final static java.lang.String FINAL_PROPERTY = "final"
innr public final static !enum Block
innr public final static !enum Final
intf org.netbeans.modules.xml.schema.model.ComplexType
intf org.netbeans.modules.xml.schema.model.GlobalType
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getAbstractDefault()
meth public abstract boolean getAbstractEffective()
meth public abstract java.lang.Boolean isAbstract()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Block> getBlock()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Block> getBlockDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Block> getBlockEffective()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Final> getFinal()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Final> getFinalDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Final> getFinalEffective()
meth public abstract void setAbstract(java.lang.Boolean)
meth public abstract void setBlock(java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Block>)
meth public abstract void setFinal(java.util.Set<org.netbeans.modules.xml.schema.model.GlobalComplexType$Final>)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.GlobalComplexType$Block
outer org.netbeans.modules.xml.schema.model.GlobalComplexType
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block ALL
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block EMPTY
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block RESTRICTION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.GlobalComplexType$Block[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.GlobalComplexType$Block>
hfds value
CLSS public final static !enum org.netbeans.modules.xml.schema.model.GlobalComplexType$Final
outer org.netbeans.modules.xml.schema.model.GlobalComplexType
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final ALL
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final EMPTY
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final RESTRICTION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.GlobalComplexType$Final[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.GlobalComplexType$Final>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalElement
fld public final static java.lang.String ABSTRACT_PROPERTY = "abstract"
fld public final static java.lang.String FINAL_PROPERTY = "final"
fld public final static java.lang.String SUBSTITUTION_GROUP_PROPERTY = "substitutionGroup"
innr public final static !enum Final
intf org.netbeans.modules.xml.schema.model.Element
intf org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.TypeContainer
meth public abstract boolean getAbstractDefault()
meth public abstract boolean getAbstractEffective()
meth public abstract java.lang.Boolean isAbstract()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlock()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlockDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlockEffective()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalElement$Final> getFinal()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalElement$Final> getFinalDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalElement$Final> getFinalEffective()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalElement> getSubstitutionGroup()
meth public abstract void setAbstract(java.lang.Boolean)
meth public abstract void setBlock(java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block>)
meth public abstract void setFinal(java.util.Set<org.netbeans.modules.xml.schema.model.GlobalElement$Final>)
meth public abstract void setSubstitutionGroup(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalElement>)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.GlobalElement$Final
outer org.netbeans.modules.xml.schema.model.GlobalElement
fld public final static org.netbeans.modules.xml.schema.model.GlobalElement$Final ALL
fld public final static org.netbeans.modules.xml.schema.model.GlobalElement$Final EMPTY
fld public final static org.netbeans.modules.xml.schema.model.GlobalElement$Final EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.GlobalElement$Final RESTRICTION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.GlobalElement$Final valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.GlobalElement$Final[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.GlobalElement$Final>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalGroup
fld public final static java.lang.String DEFINITION_PROPERTY = "definition"
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.LocalGroupDefinition getDefinition()
meth public abstract void setDefinition(org.netbeans.modules.xml.schema.model.LocalGroupDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalSimpleType
fld public final static java.lang.String FINAL_PROPERTY = "final"
innr public final static !enum Final
intf org.netbeans.modules.xml.schema.model.GlobalType
intf org.netbeans.modules.xml.schema.model.SimpleType
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final> getFinal()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final> getFinalDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final> getFinalEffective()
meth public abstract void setFinal(java.util.Set<org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final>)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final
outer org.netbeans.modules.xml.schema.model.GlobalSimpleType
fld public final static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final ALL
fld public final static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final EMPTY
fld public final static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final LIST
fld public final static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final RESTRICTION
fld public final static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final UNION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.GlobalSimpleType$Final>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GlobalType
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.GroupReference
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
fld public final static java.lang.String REF_PROPERTY = "ref"
intf org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
meth public abstract int getMinOccursDefault()
meth public abstract int getMinOccursEffective()
meth public abstract java.lang.Integer getMinOccurs()
meth public abstract java.lang.String getMaxOccurs()
meth public abstract java.lang.String getMaxOccursDefault()
meth public abstract java.lang.String getMaxOccursEffective()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalGroup> getRef()
meth public abstract void setMaxOccurs(java.lang.String)
meth public abstract void setMinOccurs(java.lang.Integer)
meth public abstract void setRef(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalGroup>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Import
fld public final static java.lang.String NAMESPACE_PROPERTY = "namespace"
intf org.netbeans.modules.xml.schema.model.SchemaModelReference
meth public abstract java.lang.String getNamespace()
meth public abstract void setNamespace(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Include
intf org.netbeans.modules.xml.schema.model.SchemaModelReference
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Key
intf org.netbeans.modules.xml.schema.model.Constraint
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.KeyRef
fld public final static java.lang.String REFERER_PROPERTY = "referer"
intf org.netbeans.modules.xml.schema.model.Constraint
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.Constraint getReferer()
meth public abstract void setReferer(org.netbeans.modules.xml.schema.model.Constraint)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Length
intf org.netbeans.modules.xml.schema.model.LengthFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LengthFacet
fld public final static java.lang.String FIXED_PROPERTY = "fixed"
fld public final static java.lang.String VALUE_PROPERTY = "value"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getFixedDefault()
meth public abstract boolean getFixedEffective()
meth public abstract int getValue()
meth public abstract java.lang.Boolean isFixed()
meth public abstract void setFixed(java.lang.Boolean)
meth public abstract void setValue(int)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.List
fld public final static java.lang.String INLINE_TYPE_PROPERTY = "inlineType"
fld public final static java.lang.String TYPE_PROPERTY = "type"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SimpleTypeDefinition
meth public abstract org.netbeans.modules.xml.schema.model.LocalSimpleType getInlineType()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getType()
meth public abstract void setInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void setType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalAttribute
fld public final static java.lang.String FORM_PROPERTY = "form"
fld public final static java.lang.String REF_PROPERTY = "ref"
fld public final static java.lang.String USE_PROPERTY = "use"
intf org.netbeans.modules.xml.schema.model.Attribute
intf org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUse()
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUseDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Attribute$Use getUseEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getForm()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormEffective()
meth public abstract org.netbeans.modules.xml.schema.model.LocalSimpleType getInlineType()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getType()
meth public abstract void setForm(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void setType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
meth public abstract void setUse(org.netbeans.modules.xml.schema.model.Attribute$Use)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalAttributeContainer
fld public final static java.lang.String ANY_ATTRIBUTE_PROPERTY = "anyAttribute"
fld public final static java.lang.String ATTRIBUTE_GROUP_REFERENCE_PROPERTY = "attributeGroupReferences"
fld public final static java.lang.String LOCAL_ATTRIBUTE_PROPERTY = "localAttribute"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.AttributeGroupReference> getAttributeGroupReferences()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.AttributeReference> getAttributeReferences()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.LocalAttribute> getLocalAttributes()
meth public abstract org.netbeans.modules.xml.schema.model.AnyAttribute getAnyAttribute()
meth public abstract void addAttributeGroupReference(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public abstract void addAttributeReference(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public abstract void addLocalAttribute(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public abstract void removeAttributeGroupReference(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public abstract void removeAttributeReference(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public abstract void removeLocalAttribute(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public abstract void setAnyAttribute(org.netbeans.modules.xml.schema.model.AnyAttribute)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalComplexType
intf org.netbeans.modules.xml.schema.model.ComplexType
intf org.netbeans.modules.xml.schema.model.LocalType
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalElement
fld public final static java.lang.String FORM_PROPERTY = "form"
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
intf org.netbeans.modules.xml.schema.model.Element
intf org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
intf org.netbeans.modules.xml.schema.model.TypeContainer
meth public abstract boolean allowsFullMultiplicity()
meth public abstract int getMinOccursDefault()
meth public abstract int getMinOccursEffective()
meth public abstract java.lang.Integer getMinOccurs()
meth public abstract java.lang.String getMaxOccurs()
meth public abstract java.lang.String getMaxOccursDefault()
meth public abstract java.lang.String getMaxOccursEffective()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlock()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlockDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block> getBlockEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getForm()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getFormEffective()
meth public abstract void setBlock(java.util.Set<org.netbeans.modules.xml.schema.model.Element$Block>)
meth public abstract void setForm(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setMaxOccurs(java.lang.String)
meth public abstract void setMinOccurs(java.lang.Integer)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalGroupDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalSimpleType
intf org.netbeans.modules.xml.schema.model.LocalType
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SimpleType
CLSS public abstract interface org.netbeans.modules.xml.schema.model.LocalType
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MaxExclusive
intf org.netbeans.modules.xml.schema.model.BoundaryFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MaxInclusive
intf org.netbeans.modules.xml.schema.model.BoundaryFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MaxLength
intf org.netbeans.modules.xml.schema.model.LengthFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MinExclusive
intf org.netbeans.modules.xml.schema.model.BoundaryFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MinInclusive
intf org.netbeans.modules.xml.schema.model.BoundaryFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.MinLength
intf org.netbeans.modules.xml.schema.model.LengthFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.xam.Nameable<org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public abstract org.netbeans.modules.xml.schema.model.SchemaModel getModel()
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Notation
fld public final static java.lang.String PUBLIC_PROPERTY = "public"
fld public final static java.lang.String SYSTEM_PROPERTY = "system"
intf org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getPublicIdentifier()
meth public abstract java.lang.String getSystemIdentifier()
meth public abstract void setPublicIdentifier(java.lang.String)
meth public abstract void setSystemIdentifier(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Occur
innr public final static !enum ZeroOne
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Occur$ZeroOne
outer org.netbeans.modules.xml.schema.model.Occur
fld public final static org.netbeans.modules.xml.schema.model.Occur$ZeroOne ONE
fld public final static org.netbeans.modules.xml.schema.model.Occur$ZeroOne ZERO
intf org.netbeans.modules.xml.schema.model.Occur
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Occur$ZeroOne valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Occur$ZeroOne valueOfNumeric(java.lang.String,java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Occur$ZeroOne[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Occur$ZeroOne>
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Pattern
fld public final static java.lang.String VALUE_PROPERTY = "value"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getValue()
meth public abstract void setValue(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Redefine
fld public final static java.lang.String ATTRIBUTE_GROUP_PROPERTY = "attributeGroup"
fld public final static java.lang.String COMPLEX_TYPE_PROPERTY = "complexType"
fld public final static java.lang.String GROUP_DEFINITION_PROPERTY = "groupDefinition"
fld public final static java.lang.String SIMPLE_TYPE_PROPERTY = "simpleType"
intf org.netbeans.modules.xml.schema.model.SchemaModelReference
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalAttributeGroup> getAttributeGroups()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalComplexType> getComplexTypes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalGroup> getGroupDefinitions()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getSimpleTypes()
meth public abstract void addAttributeGroup(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public abstract void addComplexType(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public abstract void addGroupDefinition(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public abstract void addSimpleType(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public abstract void removeAttributeGroup(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public abstract void removeComplexType(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public abstract void removeGroupDefinition(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public abstract void removeSimpleType(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent
intf org.netbeans.modules.xml.schema.model.NameableSchemaComponent
intf org.netbeans.modules.xml.xam.NamedReferenceable<org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public abstract org.netbeans.modules.xml.schema.model.SchemaModel getModel()
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Schema
fld public final static java.lang.String ATTRIBUTES_PROPERTY = "attributes"
fld public final static java.lang.String ATTRIBUTE_FORM_DEFAULT_PROPERTY = "attributeFormDefault"
fld public final static java.lang.String ATTRIBUTE_GROUPS_PROPERTY = "attributeGroups"
fld public final static java.lang.String BLOCK_DEFAULT_PROPERTY = "blockDefault"
fld public final static java.lang.String COMPLEX_TYPES_PROPERTY = "complexTypes"
fld public final static java.lang.String ELEMENTS_PROPERTY = "elements"
fld public final static java.lang.String ELEMENT_FORM_DEFAULT_PROPERTY = "elementFormDefault"
fld public final static java.lang.String FINAL_DEFAULT_PROPERTY = "finalDefault"
fld public final static java.lang.String GROUPS_PROPERTY = "groups"
fld public final static java.lang.String LANGUAGE_PROPERTY = "language"
fld public final static java.lang.String NOTATIONS_PROPERTY = "notations"
fld public final static java.lang.String SCHEMA_REFERENCES_PROPERTY = "schemaReferences"
fld public final static java.lang.String SIMPLE_TYPES_PROPERTY = "simpleTypes"
fld public final static java.lang.String TARGET_NAMESPACE_PROPERTY = "targetNamespace"
fld public final static java.lang.String VERSION_PROPERTY = "version"
innr public final static !enum Block
innr public final static !enum Final
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.xam.EmbeddableRoot
meth public abstract java.lang.String getLanguage()
meth public abstract java.lang.String getTargetNamespace()
meth public abstract java.lang.String getVersion()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalAttribute> getAttributes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalAttributeGroup> getAttributeGroups()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalComplexType> getComplexTypes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalElement> findAllGlobalElements()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalElement> getElements()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalGroup> getGroups()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getSimpleTypes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.GlobalType> findAllGlobalTypes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Import> getImports()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Include> getIncludes()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Notation> getNotations()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Redefine> getRedefines()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.SchemaModelReference> getSchemaReferences()
meth public abstract java.util.Map<java.lang.String,java.lang.String> getPrefixes()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Block> getBlockDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Block> getBlockDefaultDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Block> getBlockDefaultEffective()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Final> getFinalDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Final> getFinalDefaultDefault()
meth public abstract java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Final> getFinalDefaultEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getAttributeFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getAttributeFormDefaultDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getAttributeFormDefaultEffective()
meth public abstract org.netbeans.modules.xml.schema.model.Form getElementFormDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getElementFormDefaultDefault()
meth public abstract org.netbeans.modules.xml.schema.model.Form getElementFormDefaultEffective()
meth public abstract void addAttribute(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public abstract void addAttributeGroup(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public abstract void addComplexType(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public abstract void addElement(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public abstract void addExternalReference(org.netbeans.modules.xml.schema.model.SchemaModelReference)
meth public abstract void addGroup(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public abstract void addNotation(org.netbeans.modules.xml.schema.model.Notation)
meth public abstract void addPrefix(java.lang.String,java.lang.String)
meth public abstract void addSimpleType(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public abstract void removeAttribute(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public abstract void removeAttributeGroup(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public abstract void removeComplexType(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public abstract void removeElement(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public abstract void removeExternalReference(org.netbeans.modules.xml.schema.model.SchemaModelReference)
meth public abstract void removeGroup(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public abstract void removeNotation(org.netbeans.modules.xml.schema.model.Notation)
meth public abstract void removePrefix(java.lang.String)
meth public abstract void removeSimpleType(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public abstract void setAttributeFormDefault(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setBlockDefault(java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Block>)
meth public abstract void setElementFormDefault(org.netbeans.modules.xml.schema.model.Form)
meth public abstract void setFinalDefault(java.util.Set<org.netbeans.modules.xml.schema.model.Schema$Final>)
meth public abstract void setLanguage(java.lang.String)
meth public abstract void setTargetNamespace(java.lang.String)
meth public abstract void setVersion(java.lang.String)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Schema$Block
outer org.netbeans.modules.xml.schema.model.Schema
fld public final static org.netbeans.modules.xml.schema.model.Schema$Block ALL
fld public final static org.netbeans.modules.xml.schema.model.Schema$Block EMPTY
fld public final static org.netbeans.modules.xml.schema.model.Schema$Block EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.Schema$Block RESTRICTION
fld public final static org.netbeans.modules.xml.schema.model.Schema$Block SUBSTITUTION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Schema$Block valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Schema$Block[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Schema$Block>
hfds value
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Schema$Final
outer org.netbeans.modules.xml.schema.model.Schema
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final ALL
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final EMPTY
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final EXTENSION
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final LIST
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final RESTRICTION
fld public final static org.netbeans.modules.xml.schema.model.Schema$Final UNION
intf org.netbeans.modules.xml.schema.model.Derivation
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Schema$Final valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Schema$Final[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Schema$Final>
hfds value
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SchemaComponent
fld public final static java.lang.String ANNOTATION_PROPERTY = "annotation"
fld public final static java.lang.String ID_PROPERTY = "id"
intf org.netbeans.modules.xml.xam.dom.DocumentComponent<org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public abstract <%0 extends org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent> org.netbeans.modules.xml.xam.dom.NamedComponentReference<{%%0}> createReferenceTo({%%0},java.lang.Class<{%%0}>)
meth public abstract boolean fromSameModel(org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public abstract java.lang.Class<? extends org.netbeans.modules.xml.schema.model.SchemaComponent> getComponentType()
meth public abstract java.lang.String getAnyAttribute(javax.xml.namespace.QName)
meth public abstract java.lang.String getId()
meth public abstract org.netbeans.modules.xml.schema.model.Annotation getAnnotation()
meth public abstract org.netbeans.modules.xml.schema.model.SchemaModel getModel()
meth public abstract void accept(org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor)
meth public abstract void setAnnotation(org.netbeans.modules.xml.schema.model.Annotation)
meth public abstract void setAnyAttribute(javax.xml.namespace.QName,java.lang.String)
meth public abstract void setId(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SchemaComponentFactory
intf org.netbeans.modules.xml.xam.dom.ComponentFactory<org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public abstract <%0 extends org.netbeans.modules.xml.schema.model.ReferenceableSchemaComponent> org.netbeans.modules.xml.xam.dom.NamedComponentReference<{%%0}> createGlobalReference({%%0},java.lang.Class<{%%0}>,org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public abstract org.netbeans.modules.xml.schema.model.All createAll()
meth public abstract org.netbeans.modules.xml.schema.model.Annotation createAnnotation()
meth public abstract org.netbeans.modules.xml.schema.model.AnyAttribute createAnyAttribute()
meth public abstract org.netbeans.modules.xml.schema.model.AnyElement createAny()
meth public abstract org.netbeans.modules.xml.schema.model.AppInfo createAppInfo()
meth public abstract org.netbeans.modules.xml.schema.model.AttributeGroupReference createAttributeGroupReference()
meth public abstract org.netbeans.modules.xml.schema.model.AttributeReference createAttributeReference()
meth public abstract org.netbeans.modules.xml.schema.model.Choice createChoice()
meth public abstract org.netbeans.modules.xml.schema.model.ComplexContent createComplexContent()
meth public abstract org.netbeans.modules.xml.schema.model.ComplexContentRestriction createComplexContentRestriction()
meth public abstract org.netbeans.modules.xml.schema.model.ComplexExtension createComplexExtension()
meth public abstract org.netbeans.modules.xml.schema.model.Documentation createDocumentation()
meth public abstract org.netbeans.modules.xml.schema.model.ElementReference createElementReference()
meth public abstract org.netbeans.modules.xml.schema.model.Enumeration createEnumeration()
meth public abstract org.netbeans.modules.xml.schema.model.Field createField()
meth public abstract org.netbeans.modules.xml.schema.model.FractionDigits createFractionDigits()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalAttribute createGlobalAttribute()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalAttributeGroup createGlobalAttributeGroup()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalComplexType createGlobalComplexType()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalElement createGlobalElement()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalGroup createGroupDefinition()
meth public abstract org.netbeans.modules.xml.schema.model.GlobalSimpleType createGlobalSimpleType()
meth public abstract org.netbeans.modules.xml.schema.model.GroupReference createGroupReference()
meth public abstract org.netbeans.modules.xml.schema.model.Import createImport()
meth public abstract org.netbeans.modules.xml.schema.model.Include createInclude()
meth public abstract org.netbeans.modules.xml.schema.model.Key createKey()
meth public abstract org.netbeans.modules.xml.schema.model.KeyRef createKeyRef()
meth public abstract org.netbeans.modules.xml.schema.model.Length createLength()
meth public abstract org.netbeans.modules.xml.schema.model.List createList()
meth public abstract org.netbeans.modules.xml.schema.model.LocalAttribute createLocalAttribute()
meth public abstract org.netbeans.modules.xml.schema.model.LocalComplexType createLocalComplexType()
meth public abstract org.netbeans.modules.xml.schema.model.LocalElement createLocalElement()
meth public abstract org.netbeans.modules.xml.schema.model.LocalSimpleType createLocalSimpleType()
meth public abstract org.netbeans.modules.xml.schema.model.MaxExclusive createMaxExclusive()
meth public abstract org.netbeans.modules.xml.schema.model.MaxInclusive createMaxInclusive()
meth public abstract org.netbeans.modules.xml.schema.model.MaxLength createMaxLength()
meth public abstract org.netbeans.modules.xml.schema.model.MinExclusive createMinExclusive()
meth public abstract org.netbeans.modules.xml.schema.model.MinInclusive createMinInclusive()
meth public abstract org.netbeans.modules.xml.schema.model.MinLength createMinLength()
meth public abstract org.netbeans.modules.xml.schema.model.Notation createNotation()
meth public abstract org.netbeans.modules.xml.schema.model.Pattern createPattern()
meth public abstract org.netbeans.modules.xml.schema.model.Redefine createRedefine()
meth public abstract org.netbeans.modules.xml.schema.model.Schema createSchema()
meth public abstract org.netbeans.modules.xml.schema.model.Selector createSelector()
meth public abstract org.netbeans.modules.xml.schema.model.Sequence createSequence()
meth public abstract org.netbeans.modules.xml.schema.model.SimpleContent createSimpleContent()
meth public abstract org.netbeans.modules.xml.schema.model.SimpleContentRestriction createSimpleContentRestriction()
meth public abstract org.netbeans.modules.xml.schema.model.SimpleExtension createSimpleExtension()
meth public abstract org.netbeans.modules.xml.schema.model.SimpleTypeRestriction createSimpleTypeRestriction()
meth public abstract org.netbeans.modules.xml.schema.model.TotalDigits createTotalDigits()
meth public abstract org.netbeans.modules.xml.schema.model.Union createUnion()
meth public abstract org.netbeans.modules.xml.schema.model.Unique createUnique()
meth public abstract org.netbeans.modules.xml.schema.model.Whitespace createWhitespace()
CLSS public org.netbeans.modules.xml.schema.model.SchemaComponentReference<%0 extends org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public boolean equals(java.lang.Object)
meth public int hashCode()
meth public java.lang.String toString()
meth public static <%0 extends org.netbeans.modules.xml.schema.model.SchemaComponent> org.netbeans.modules.xml.schema.model.SchemaComponentReference<{%%0}> create({%%0})
meth public {org.netbeans.modules.xml.schema.model.SchemaComponentReference%0} get()
supr java.lang.Object
hfds component
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SchemaModel
intf org.netbeans.modules.xml.xam.Referenceable
intf org.netbeans.modules.xml.xam.dom.DocumentModel<org.netbeans.modules.xml.schema.model.SchemaComponent>
meth public abstract <%0 extends org.netbeans.modules.xml.xam.NamedReferenceable> {%%0} findByNameAndType(java.lang.String,java.lang.Class<{%%0}>)
meth public abstract <%0 extends org.netbeans.modules.xml.xam.NamedReferenceable> {%%0} resolve(java.lang.String,java.lang.String,java.lang.Class<{%%0}>)
meth public abstract boolean isEmbedded()
meth public abstract java.lang.String getEffectiveNamespace(org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Schema> findSchemas(java.lang.String)
meth public abstract org.netbeans.modules.xml.schema.model.Schema getSchema()
meth public abstract org.netbeans.modules.xml.schema.model.SchemaComponentFactory getFactory()
CLSS public org.netbeans.modules.xml.schema.model.SchemaModelFactory
meth protected org.netbeans.modules.xml.schema.model.SchemaModel createModel(org.netbeans.modules.xml.xam.ModelSource)
meth public org.netbeans.modules.xml.schema.model.SchemaModel createEmbeddedSchemaModel(org.netbeans.modules.xml.xam.dom.DocumentModel,org.w3c.dom.Element)
meth public org.netbeans.modules.xml.schema.model.SchemaModel getModel(org.netbeans.modules.xml.xam.ModelSource)
meth public org.netbeans.modules.xml.schema.model.SchemaModel getPrimitiveTypesModel()
meth public static org.netbeans.modules.xml.schema.model.SchemaModelFactory getDefault()
supr org.netbeans.modules.xml.xam.AbstractModelFactory<org.netbeans.modules.xml.schema.model.SchemaModel>
hfds primitiveTypesSchema,schemaModelFactory
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SchemaModelReference
fld public final static java.lang.String SCHEMA_LOCATION_PROPERTY = "schemaLocation"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getSchemaLocation()
meth public abstract org.netbeans.modules.xml.schema.model.SchemaModel resolveReferencedModel() throws org.netbeans.modules.xml.xam.locator.CatalogModelException
meth public abstract void setSchemaLocation(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Selector
fld public final static java.lang.String XPATH_PROPERTY = "xPath"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.lang.String getXPath()
meth public abstract void setXPath(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Sequence
fld public final static java.lang.String CONTENT_PROPERTY = "content"
fld public final static java.lang.String MAX_OCCURS_PROPERTY = "maxOccurs"
fld public final static java.lang.String MIN_OCCURS_PROPERTY = "minOccurs"
intf org.netbeans.modules.xml.schema.model.ComplexExtensionDefinition
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.LocalGroupDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SequenceDefinition
meth public abstract java.util.List<org.netbeans.modules.xml.schema.model.SequenceDefinition> getContent()
meth public abstract org.netbeans.modules.xml.schema.model.Cardinality getCardinality()
meth public abstract void addContent(org.netbeans.modules.xml.schema.model.SequenceDefinition,int)
meth public abstract void appendContent(org.netbeans.modules.xml.schema.model.SequenceDefinition)
meth public abstract void removeContent(org.netbeans.modules.xml.schema.model.SequenceDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SequenceDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleContent
fld public final static java.lang.String LOCAL_DEFINITION_PROPERTY = "restriction"
intf org.netbeans.modules.xml.schema.model.ComplexTypeDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.SimpleContentDefinition getLocalDefinition()
meth public abstract void setLocalDefinition(org.netbeans.modules.xml.schema.model.SimpleContentDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleContentDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleContentRestriction
intf org.netbeans.modules.xml.schema.model.LocalAttributeContainer
intf org.netbeans.modules.xml.schema.model.SimpleContentDefinition
intf org.netbeans.modules.xml.schema.model.SimpleRestriction
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalType> getBase()
meth public abstract void setBase(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleExtension
intf org.netbeans.modules.xml.schema.model.Extension
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SimpleContentDefinition
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleRestriction
fld public final static java.lang.String BASE_PROPERTY = "base"
fld public final static java.lang.String ENUMERATION_PROPERTY = "enumerations"
fld public final static java.lang.String FRACTION_DIGITS_PROPERTY = "fractionDigits"
fld public final static java.lang.String INLINETYPE_PROPERTY = "inlinetype"
fld public final static java.lang.String LENGTH_PROPERTY = "lengths"
fld public final static java.lang.String MAX_EXCLUSIVE_PROPERTY = "maxExclusives"
fld public final static java.lang.String MAX_INCLUSIVE_PROPERTY = "maxInclusives"
fld public final static java.lang.String MAX_LENGTH_PROPERTY = "maxLengths"
fld public final static java.lang.String MIN_EXCLUSIVE_PROPERTY = "minExclusives"
fld public final static java.lang.String MIN_INCLUSIVE_PROPERTY = "minInclusives"
fld public final static java.lang.String MIN_LENGTH_PROPERTY = "minLengths"
fld public final static java.lang.String PATTERN_PROPERTY = "patterns"
fld public final static java.lang.String TOTAL_DIGITS_PROPERTY = "totalDigits"
fld public final static java.lang.String WHITESPACE_PROPERTY = "whitespaces"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Enumeration> getEnumerations()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.FractionDigits> getFractionDigits()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Length> getLengths()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MaxExclusive> getMaxExclusives()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MaxInclusive> getMaxInclusives()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MaxLength> getMaxLengths()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MinExclusive> getMinExclusives()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MinInclusive> getMinInclusives()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.MinLength> getMinLengths()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Pattern> getPatterns()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.TotalDigits> getTotalDigits()
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.Whitespace> getWhitespaces()
meth public abstract org.netbeans.modules.xml.schema.model.LocalSimpleType getInlineType()
meth public abstract void addEnumeration(org.netbeans.modules.xml.schema.model.Enumeration)
meth public abstract void addFractionDigits(org.netbeans.modules.xml.schema.model.FractionDigits)
meth public abstract void addLength(org.netbeans.modules.xml.schema.model.Length)
meth public abstract void addMaxExclusive(org.netbeans.modules.xml.schema.model.MaxExclusive)
meth public abstract void addMaxInclusive(org.netbeans.modules.xml.schema.model.MaxInclusive)
meth public abstract void addMaxLength(org.netbeans.modules.xml.schema.model.MaxLength)
meth public abstract void addMinExclusive(org.netbeans.modules.xml.schema.model.MinExclusive)
meth public abstract void addMinInclusive(org.netbeans.modules.xml.schema.model.MinInclusive)
meth public abstract void addMinLength(org.netbeans.modules.xml.schema.model.MinLength)
meth public abstract void addPattern(org.netbeans.modules.xml.schema.model.Pattern)
meth public abstract void addTotalDigit(org.netbeans.modules.xml.schema.model.TotalDigits)
meth public abstract void addWhitespace(org.netbeans.modules.xml.schema.model.Whitespace)
meth public abstract void removeEnumeration(org.netbeans.modules.xml.schema.model.Enumeration)
meth public abstract void removeFractionDigits(org.netbeans.modules.xml.schema.model.FractionDigits)
meth public abstract void removeLength(org.netbeans.modules.xml.schema.model.Length)
meth public abstract void removeMaxExclusive(org.netbeans.modules.xml.schema.model.MaxExclusive)
meth public abstract void removeMaxInclusive(org.netbeans.modules.xml.schema.model.MaxInclusive)
meth public abstract void removeMaxLength(org.netbeans.modules.xml.schema.model.MaxLength)
meth public abstract void removeMinExclusive(org.netbeans.modules.xml.schema.model.MinExclusive)
meth public abstract void removeMinInclusive(org.netbeans.modules.xml.schema.model.MinInclusive)
meth public abstract void removeMinLength(org.netbeans.modules.xml.schema.model.MinLength)
meth public abstract void removePattern(org.netbeans.modules.xml.schema.model.Pattern)
meth public abstract void removeTotalDigit(org.netbeans.modules.xml.schema.model.TotalDigits)
meth public abstract void removeWhitespace(org.netbeans.modules.xml.schema.model.Whitespace)
meth public abstract void setInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleType
fld public final static java.lang.String DEFINITION_PROPERTY = "definition"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract org.netbeans.modules.xml.schema.model.SimpleTypeDefinition getDefinition()
meth public abstract void setDefinition(org.netbeans.modules.xml.schema.model.SimpleTypeDefinition)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleTypeDefinition
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.SimpleTypeRestriction
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SimpleRestriction
intf org.netbeans.modules.xml.schema.model.SimpleTypeDefinition
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType> getBase()
meth public abstract void setBase(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.TotalDigits
intf org.netbeans.modules.xml.schema.model.LengthFacet
CLSS public abstract interface org.netbeans.modules.xml.schema.model.TypeContainer
fld public final static java.lang.String INLINE_TYPE_PROPERTY = "inlineType"
fld public final static java.lang.String TYPE_PROPERTY = "type"
meth public abstract org.netbeans.modules.xml.schema.model.LocalType getInlineType()
meth public abstract org.netbeans.modules.xml.xam.dom.NamedComponentReference<? extends org.netbeans.modules.xml.schema.model.GlobalType> getType()
meth public abstract void setInlineType(org.netbeans.modules.xml.schema.model.LocalType)
meth public abstract void setType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<? extends org.netbeans.modules.xml.schema.model.GlobalType>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Union
fld public final static java.lang.String INLINE_TYPE_PROPERTY = "inline_type"
fld public final static java.lang.String MEMBER_TYPES_PROPERTY = "memberTypes"
intf org.netbeans.modules.xml.schema.model.SchemaComponent
intf org.netbeans.modules.xml.schema.model.SimpleTypeDefinition
meth public abstract java.util.Collection<org.netbeans.modules.xml.schema.model.LocalSimpleType> getInlineTypes()
meth public abstract java.util.List<org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>> getMemberTypes()
meth public abstract void addInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void addMemberType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
meth public abstract void removeInlineType(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void removeMemberType(org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>)
meth public abstract void setMemberTypes(java.util.List<org.netbeans.modules.xml.xam.dom.NamedComponentReference<org.netbeans.modules.xml.schema.model.GlobalSimpleType>>)
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Unique
intf org.netbeans.modules.xml.schema.model.Constraint
intf org.netbeans.modules.xml.schema.model.SchemaComponent
CLSS public abstract interface org.netbeans.modules.xml.schema.model.Whitespace
fld public final static java.lang.String FIXED_PROPERTY = "fixed"
fld public final static java.lang.String VALUE_PROPERTY = "value"
innr public final static !enum Treatment
intf org.netbeans.modules.xml.schema.model.SchemaComponent
meth public abstract boolean getFixedDefault()
meth public abstract boolean getFixedEffective()
meth public abstract java.lang.Boolean isFixed()
meth public abstract org.netbeans.modules.xml.schema.model.Whitespace$Treatment getValue()
meth public abstract void setFixed(java.lang.Boolean)
meth public abstract void setValue(org.netbeans.modules.xml.schema.model.Whitespace$Treatment)
CLSS public final static !enum org.netbeans.modules.xml.schema.model.Whitespace$Treatment
outer org.netbeans.modules.xml.schema.model.Whitespace
fld public final static org.netbeans.modules.xml.schema.model.Whitespace$Treatment COLLAPSE
fld public final static org.netbeans.modules.xml.schema.model.Whitespace$Treatment PRESERVE
fld public final static org.netbeans.modules.xml.schema.model.Whitespace$Treatment REPLACE
meth public java.lang.String toString()
meth public static org.netbeans.modules.xml.schema.model.Whitespace$Treatment valueOf(java.lang.String)
meth public static org.netbeans.modules.xml.schema.model.Whitespace$Treatment[] values()
supr java.lang.Enum<org.netbeans.modules.xml.schema.model.Whitespace$Treatment>
hfds value
CLSS public org.netbeans.modules.xml.schema.model.visitor.DeepSchemaVisitor
cons public init()
intf org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor
meth protected void visitChildren(org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public void visit(org.netbeans.modules.xml.schema.model.All)
meth public void visit(org.netbeans.modules.xml.schema.model.Annotation)
meth public void visit(org.netbeans.modules.xml.schema.model.AnyAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.AnyElement)
meth public void visit(org.netbeans.modules.xml.schema.model.AppInfo)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Choice)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexContent)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexContentRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.Documentation)
meth public void visit(org.netbeans.modules.xml.schema.model.ElementReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Enumeration)
meth public void visit(org.netbeans.modules.xml.schema.model.Field)
meth public void visit(org.netbeans.modules.xml.schema.model.FractionDigits)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public void visit(org.netbeans.modules.xml.schema.model.GroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Import)
meth public void visit(org.netbeans.modules.xml.schema.model.Include)
meth public void visit(org.netbeans.modules.xml.schema.model.Key)
meth public void visit(org.netbeans.modules.xml.schema.model.KeyRef)
meth public void visit(org.netbeans.modules.xml.schema.model.Length)
meth public void visit(org.netbeans.modules.xml.schema.model.List)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalComplexType)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxExclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxInclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxLength)
meth public void visit(org.netbeans.modules.xml.schema.model.MinExclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MinInclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MinLength)
meth public void visit(org.netbeans.modules.xml.schema.model.Notation)
meth public void visit(org.netbeans.modules.xml.schema.model.Pattern)
meth public void visit(org.netbeans.modules.xml.schema.model.Redefine)
meth public void visit(org.netbeans.modules.xml.schema.model.Schema)
meth public void visit(org.netbeans.modules.xml.schema.model.Selector)
meth public void visit(org.netbeans.modules.xml.schema.model.Sequence)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleContent)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleContentRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleTypeRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.TotalDigits)
meth public void visit(org.netbeans.modules.xml.schema.model.Union)
meth public void visit(org.netbeans.modules.xml.schema.model.Unique)
meth public void visit(org.netbeans.modules.xml.schema.model.Whitespace)
supr java.lang.Object
CLSS public org.netbeans.modules.xml.schema.model.visitor.DefaultSchemaVisitor
cons public init()
intf org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor
meth public void visit(org.netbeans.modules.xml.schema.model.All)
meth public void visit(org.netbeans.modules.xml.schema.model.Annotation)
meth public void visit(org.netbeans.modules.xml.schema.model.AnyAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.AnyElement)
meth public void visit(org.netbeans.modules.xml.schema.model.AppInfo)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Choice)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexContent)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexContentRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.Documentation)
meth public void visit(org.netbeans.modules.xml.schema.model.ElementReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Enumeration)
meth public void visit(org.netbeans.modules.xml.schema.model.Field)
meth public void visit(org.netbeans.modules.xml.schema.model.FractionDigits)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public void visit(org.netbeans.modules.xml.schema.model.GroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.Import)
meth public void visit(org.netbeans.modules.xml.schema.model.Include)
meth public void visit(org.netbeans.modules.xml.schema.model.Key)
meth public void visit(org.netbeans.modules.xml.schema.model.KeyRef)
meth public void visit(org.netbeans.modules.xml.schema.model.Length)
meth public void visit(org.netbeans.modules.xml.schema.model.List)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalComplexType)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxExclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxInclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MaxLength)
meth public void visit(org.netbeans.modules.xml.schema.model.MinExclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MinInclusive)
meth public void visit(org.netbeans.modules.xml.schema.model.MinLength)
meth public void visit(org.netbeans.modules.xml.schema.model.Notation)
meth public void visit(org.netbeans.modules.xml.schema.model.Pattern)
meth public void visit(org.netbeans.modules.xml.schema.model.Redefine)
meth public void visit(org.netbeans.modules.xml.schema.model.Schema)
meth public void visit(org.netbeans.modules.xml.schema.model.Selector)
meth public void visit(org.netbeans.modules.xml.schema.model.Sequence)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleContent)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleContentRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleTypeRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.TotalDigits)
meth public void visit(org.netbeans.modules.xml.schema.model.Union)
meth public void visit(org.netbeans.modules.xml.schema.model.Unique)
meth public void visit(org.netbeans.modules.xml.schema.model.Whitespace)
supr java.lang.Object
CLSS public org.netbeans.modules.xml.schema.model.visitor.FindGlobalReferenceVisitor<%0 extends org.netbeans.modules.xml.xam.NamedReferenceable>
cons public init()
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public void visit(org.netbeans.modules.xml.schema.model.Notation)
meth public void visit(org.netbeans.modules.xml.schema.model.Schema)
meth public {org.netbeans.modules.xml.schema.model.visitor.FindGlobalReferenceVisitor%0} find(java.lang.Class<{org.netbeans.modules.xml.schema.model.visitor.FindGlobalReferenceVisitor%0}>,java.lang.String,org.netbeans.modules.xml.schema.model.Schema)
supr org.netbeans.modules.xml.schema.model.visitor.DefaultSchemaVisitor
hfds elementType,found,localName,refType,schema
CLSS public org.netbeans.modules.xml.schema.model.visitor.FindReferredConstraintVisitor
cons public init()
meth protected void visitChildren(org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public org.netbeans.modules.xml.schema.model.Constraint findReferredConstraint(org.netbeans.modules.xml.schema.model.SchemaComponent,java.lang.String)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalElement)
supr org.netbeans.modules.xml.schema.model.visitor.DeepSchemaVisitor
hfds constraint,found,name
CLSS public org.netbeans.modules.xml.schema.model.visitor.FindSchemaComponentFromDOM
cons public init()
meth protected void visitChildren(org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public java.lang.String getXPathForComponent(org.netbeans.modules.xml.schema.model.SchemaComponent,org.netbeans.modules.xml.schema.model.SchemaComponent)
meth public org.netbeans.modules.xml.schema.model.SchemaComponent findComponent(org.netbeans.modules.xml.schema.model.SchemaComponent,java.lang.String)
meth public org.netbeans.modules.xml.schema.model.SchemaComponent findComponent(org.netbeans.modules.xml.schema.model.SchemaComponent,org.w3c.dom.Element)
meth public static <%0 extends org.netbeans.modules.xml.schema.model.SchemaComponent> {%%0} find(java.lang.Class<{%%0}>,org.netbeans.modules.xml.schema.model.SchemaComponent,java.lang.String)
supr org.netbeans.modules.xml.schema.model.visitor.DeepSchemaVisitor
hfds result,xmlNode
CLSS public final org.netbeans.modules.xml.schema.model.visitor.FindSubstitutions
meth public static java.util.Set<org.netbeans.modules.xml.schema.model.GlobalElement> resolveSubstitutions(org.netbeans.modules.xml.schema.model.SchemaModel,java.lang.String,java.lang.String)
supr java.lang.Object
hcls Visitor
CLSS public org.netbeans.modules.xml.schema.model.visitor.FindUsageVisitor
cons public init()
meth public org.netbeans.modules.xml.schema.model.visitor.Preview findUsages(java.util.Collection<org.netbeans.modules.xml.schema.model.Schema>,org.netbeans.modules.xml.xam.NamedReferenceable<org.netbeans.modules.xml.schema.model.SchemaComponent>)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexContentRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.ComplexExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.ElementReference)
meth public void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.GroupReference)
meth public void visit(org.netbeans.modules.xml.schema.model.List)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public void visit(org.netbeans.modules.xml.schema.model.LocalElement)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleExtension)
meth public void visit(org.netbeans.modules.xml.schema.model.SimpleTypeRestriction)
meth public void visit(org.netbeans.modules.xml.schema.model.Union)
supr org.netbeans.modules.xml.schema.model.visitor.DeepSchemaVisitor
hfds globalSchemaComponent,preview
CLSS public abstract interface org.netbeans.modules.xml.schema.model.visitor.Preview
meth public abstract java.util.Map<org.netbeans.modules.xml.schema.model.SchemaComponent,java.util.List<org.netbeans.modules.xml.schema.model.SchemaComponent>> getUsages()
CLSS public org.netbeans.modules.xml.schema.model.visitor.PreviewImpl
cons public init()
intf org.netbeans.modules.xml.schema.model.visitor.Preview
meth public java.util.Map<org.netbeans.modules.xml.schema.model.SchemaComponent,java.util.List<org.netbeans.modules.xml.schema.model.SchemaComponent>> getUsages()
supr java.lang.Object
hfds usages
CLSS public abstract interface org.netbeans.modules.xml.schema.model.visitor.SchemaVisitor
meth public abstract void visit(org.netbeans.modules.xml.schema.model.All)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Annotation)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.AnyAttribute)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.AnyElement)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.AppInfo)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.AttributeGroupReference)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.AttributeReference)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Choice)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.ComplexContent)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.ComplexContentRestriction)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.ComplexExtension)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Documentation)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.ElementReference)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Enumeration)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Field)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.FractionDigits)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalAttribute)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalAttributeGroup)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalComplexType)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalElement)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalGroup)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GlobalSimpleType)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.GroupReference)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Import)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Include)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Key)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.KeyRef)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Length)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.List)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.LocalAttribute)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.LocalComplexType)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.LocalElement)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.LocalSimpleType)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MaxExclusive)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MaxInclusive)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MaxLength)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MinExclusive)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MinInclusive)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.MinLength)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Notation)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Pattern)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Redefine)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Schema)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Selector)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Sequence)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.SimpleContent)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.SimpleContentRestriction)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.SimpleExtension)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.SimpleTypeRestriction)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.TotalDigits)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Union)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Unique)
meth public abstract void visit(org.netbeans.modules.xml.schema.model.Whitespace)
CLSS public abstract org.netbeans.modules.xml.xam.AbstractModelFactory<%0 extends org.netbeans.modules.xml.xam.Model>
cons public init()
fld public final static int DELAY_DIRTY = 1000
fld public final static int DELAY_SYNCER = 2000
fld public final static java.lang.String MODEL_LOADED_PROPERTY = "modelLoaded"
meth protected abstract {org.netbeans.modules.xml.xam.AbstractModelFactory%0} createModel(org.netbeans.modules.xml.xam.ModelSource)
meth protected java.lang.Object getKey(org.netbeans.modules.xml.xam.ModelSource)
meth protected {org.netbeans.modules.xml.xam.AbstractModelFactory%0} getModel(org.netbeans.modules.xml.xam.ModelSource)
meth public java.util.List<{org.netbeans.modules.xml.xam.AbstractModelFactory%0}> getModels()
meth public static org.netbeans.modules.xml.xam.spi.ModelAccessProvider getAccessProvider()
meth public void addPropertyChangeListener(java.beans.PropertyChangeListener)
meth public void removePropertyChangeListener(java.beans.PropertyChangeListener)
meth public {org.netbeans.modules.xml.xam.AbstractModelFactory%0} createFreshModel(org.netbeans.modules.xml.xam.ModelSource)
supr java.lang.Object
hfds LOG,SYNCER,cachedModels,factories,propSupport
CLSS public abstract interface org.netbeans.modules.xml.xam.Component<%0 extends org.netbeans.modules.xml.xam.Component>
meth public abstract <%0 extends {org.netbeans.modules.xml.xam.Component%0}> java.util.List<{%%0}> getChildren(java.lang.Class<{%%0}>)
meth public abstract boolean canPaste(org.netbeans.modules.xml.xam.Component)
meth public abstract java.util.List<{org.netbeans.modules.xml.xam.Component%0}> getChildren()
meth public abstract java.util.List<{org.netbeans.modules.xml.xam.Component%0}> getChildren(java.util.Collection<java.lang.Class<? extends {org.netbeans.modules.xml.xam.Component%0}>>)
meth public abstract org.netbeans.modules.xml.xam.Component copy({org.netbeans.modules.xml.xam.Component%0})
meth public abstract org.netbeans.modules.xml.xam.Model getModel()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract {org.netbeans.modules.xml.xam.Component%0} getParent()
CLSS public abstract interface org.netbeans.modules.xml.xam.EmbeddableRoot
innr public abstract interface static ForeignParent
meth public abstract org.netbeans.modules.xml.xam.Component getForeignParent()
meth public abstract void setForeignParent(org.netbeans.modules.xml.xam.Component)
CLSS public abstract interface org.netbeans.modules.xml.xam.Model<%0 extends org.netbeans.modules.xml.xam.Component<{org.netbeans.modules.xml.xam.Model%0}>>
fld public final static java.lang.String STATE_PROPERTY = "state"
innr public final static !enum State
intf org.netbeans.modules.xml.xam.Referenceable
meth public abstract boolean inSync()
meth public abstract boolean isIntransaction()
meth public abstract boolean startTransaction()
anno 0 org.netbeans.api.annotations.common.CheckReturnValue()
meth public abstract org.netbeans.modules.xml.xam.Model$State getState()
meth public abstract org.netbeans.modules.xml.xam.ModelSource getModelSource()
meth public abstract void addChildComponent(org.netbeans.modules.xml.xam.Component,org.netbeans.modules.xml.xam.Component,int)
meth public abstract void addComponentListener(org.netbeans.modules.xml.xam.ComponentListener)
meth public abstract void addPropertyChangeListener(java.beans.PropertyChangeListener)
meth public abstract void addUndoableEditListener(javax.swing.event.UndoableEditListener)
meth public abstract void addUndoableRefactorListener(javax.swing.event.UndoableEditListener)
meth public abstract void endTransaction()
meth public abstract void removeChildComponent(org.netbeans.modules.xml.xam.Component)
meth public abstract void removeComponentListener(org.netbeans.modules.xml.xam.ComponentListener)
meth public abstract void removePropertyChangeListener(java.beans.PropertyChangeListener)
meth public abstract void removeUndoableEditListener(javax.swing.event.UndoableEditListener)
meth public abstract void removeUndoableRefactorListener(javax.swing.event.UndoableEditListener)
meth public abstract void sync() throws java.io.IOException
CLSS public abstract interface org.netbeans.modules.xml.xam.Nameable<%0 extends org.netbeans.modules.xml.xam.Component>
intf org.netbeans.modules.xml.xam.Named<{org.netbeans.modules.xml.xam.Nameable%0}>
meth public abstract void setName(java.lang.String)
CLSS public abstract interface org.netbeans.modules.xml.xam.Named<%0 extends org.netbeans.modules.xml.xam.Component>
fld public final static java.lang.String NAME_PROPERTY = "name"
intf org.netbeans.modules.xml.xam.Component<{org.netbeans.modules.xml.xam.Named%0}>
meth public abstract java.lang.String getName()
CLSS public abstract interface org.netbeans.modules.xml.xam.NamedReferenceable<%0 extends org.netbeans.modules.xml.xam.Component>
intf org.netbeans.modules.xml.xam.Named<{org.netbeans.modules.xml.xam.NamedReferenceable%0}>
intf org.netbeans.modules.xml.xam.Referenceable
CLSS public abstract interface org.netbeans.modules.xml.xam.Referenceable
CLSS public abstract interface org.netbeans.modules.xml.xam.dom.ComponentFactory<%0 extends org.netbeans.modules.xml.xam.dom.DocumentComponent<{org.netbeans.modules.xml.xam.dom.ComponentFactory%0}>>
meth public abstract {org.netbeans.modules.xml.xam.dom.ComponentFactory%0} create(org.w3c.dom.Element,{org.netbeans.modules.xml.xam.dom.ComponentFactory%0})
CLSS public abstract interface org.netbeans.modules.xml.xam.dom.DocumentComponent<%0 extends org.netbeans.modules.xml.xam.dom.DocumentComponent>
fld public final static java.lang.String TEXT_CONTENT_PROPERTY = "textContent"
intf org.netbeans.modules.xml.xam.Component<{org.netbeans.modules.xml.xam.dom.DocumentComponent%0}>
meth public abstract boolean isInDocumentModel()
meth public abstract boolean referencesSameNode(org.w3c.dom.Node)
meth public abstract int findAttributePosition(java.lang.String)
meth public abstract int findPosition()
meth public abstract java.lang.String getAttribute(org.netbeans.modules.xml.xam.dom.Attribute)
meth public abstract org.w3c.dom.Element getPeer()
meth public abstract void setAttribute(java.lang.String,org.netbeans.modules.xml.xam.dom.Attribute,java.lang.Object)
meth public abstract {org.netbeans.modules.xml.xam.dom.DocumentComponent%0} findChildComponent(org.w3c.dom.Element)
CLSS public abstract interface org.netbeans.modules.xml.xam.dom.DocumentModel<%0 extends org.netbeans.modules.xml.xam.dom.DocumentComponent<{org.netbeans.modules.xml.xam.dom.DocumentModel%0}>>
intf org.netbeans.modules.xml.xam.Model<{org.netbeans.modules.xml.xam.dom.DocumentModel%0}>
meth public abstract boolean areSameNodes(org.w3c.dom.Node,org.w3c.dom.Node)
meth public abstract java.lang.String getXPathExpression(org.netbeans.modules.xml.xam.dom.DocumentComponent)
meth public abstract org.netbeans.modules.xml.xam.dom.DocumentComponent findComponent(int)
meth public abstract org.w3c.dom.Document getDocument()
meth public abstract {org.netbeans.modules.xml.xam.dom.DocumentModel%0} createComponent({org.netbeans.modules.xml.xam.dom.DocumentModel%0},org.w3c.dom.Element)
meth public abstract {org.netbeans.modules.xml.xam.dom.DocumentModel%0} getRootComponent()
|