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
|
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>pyxb.utils.fac.State</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="pyxb-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>PyXB hosted on <a href="http://sourceforge.net/projects/pyxb"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=263147&type=9" width="80" height="15" alt="Get PyXB: Python XML Schema Bindings at SourceForge.net. Fast, secure and Free Open Source software downloads"/></a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="pyxb-module.html">Package pyxb</a> ::
<a href="pyxb.utils-module.html">Package utils</a> ::
<a href="pyxb.utils.fac-module.html">Module fac</a> ::
Class State
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="pyxb.utils.fac.State-class.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== TYPE DESCRIPTION ==================== -->
<h1 class="epydoc">type State</h1><p class="nomargin-top"><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State">source code</a></span></p>
<pre class="base-tree">
object --+
|
<strong class="uidshort">State</strong>
</pre>
<hr />
<p>A thin wrapper around an object reference.</p>
<p>The state of the automaton corresponds to a position, or marked
symbol, in the term tree. Because the same symbol may appear at multiple
locations in the tree, and the distinction between these positions is
critical, a <a href="pyxb.utils.fac.State-class.html"
class="link">State</a> wrapper is provided to maintain distinct
values.</p>
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Instance Methods</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-InstanceMethods"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">symbol</span>,
<span class="summary-sig-arg">is_initial</span>,
<span class="summary-sig-arg">final_update</span>=<span class="summary-sig-default">None</span>,
<span class="summary-sig-arg">is_unordered_catenation</span>=<span class="summary-sig-default">False</span>)</span><br />
Create a FAC state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__init__">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="__get_automaton"></a><span class="summary-sig-name">__get_automaton</span>(<span class="summary-sig-arg">self</span>)</span><br />
Link to the <a href="pyxb.utils.fac.Automaton-class.html"
class="link">Automaton</a> to which the state belongs.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_automaton">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="_set_automaton"></a><span class="summary-sig-name">_set_automaton</span>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">automaton</span>)</span><br />
Method invoked during automaton construction to set state owner.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State._set_automaton">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_symbol" class="summary-sig-name" onclick="show_private();">__get_symbol</a>(<span class="summary-sig-arg">self</span>)</span><br />
Application-specific metadata identifying the symbol.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_symbol">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_isUnorderedCatenation" class="summary-sig-name" onclick="show_private();">__get_isUnorderedCatenation</a>(<span class="summary-sig-arg">self</span>)</span><br />
Indicate whether the state has subautomata for unordered catenation.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_isUnorderedCatenation">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_subAutomata" class="summary-sig-name" onclick="show_private();">__get_subAutomata</a>(<span class="summary-sig-arg">self</span>)</span><br />
A sequence of sub-automata supporting internal state transitions.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_subAutomata">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="_set_subAutomata"></a><span class="summary-sig-name">_set_subAutomata</span>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">*automata</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State._set_subAutomata">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="__get_isInitial"></a><span class="summary-sig-name">__get_isInitial</span>(<span class="summary-sig-arg">self</span>)</span><br />
<code>True</code> iff this state may be the first state the automaton
enters.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_isInitial">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_automatonEntryTransitions" class="summary-sig-name" onclick="show_private();">__get_automatonEntryTransitions</a>(<span class="summary-sig-arg">self</span>)</span><br />
Return the set of initial transitions allowing entry to the automata
through this state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_automatonEntryTransitions">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="__get_finalUpdate"></a><span class="summary-sig-name">__get_finalUpdate</span>(<span class="summary-sig-arg">self</span>)</span><br />
Return the update instructions that must be satisfied for this to be
a final state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_finalUpdate">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#subAutomataInitialTransitions" class="summary-sig-name">subAutomataInitialTransitions</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">sub_automata</span>=<span class="summary-sig-default">None</span>)</span><br />
Return the set of candidate transitions to enter a sub-automaton of
this state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.subAutomataInitialTransitions">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#isAccepting" class="summary-sig-name">isAccepting</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">counter_values</span>)</span><br />
<code>True</code> iff this state is an accepting state for the
automaton.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.isAccepting">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_transitionSet" class="summary-sig-name" onclick="show_private();">__get_transitionSet</a>(<span class="summary-sig-arg">self</span>)</span><br />
Definitions of viable transitions from this state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_transitionSet">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#_set_transitionSet" class="summary-sig-name" onclick="show_private();">_set_transitionSet</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">transition_set</span>)</span><br />
Method invoked during automaton construction to set the legal
transitions from the state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State._set_transitionSet">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#match" class="summary-sig-name">match</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">symbol</span>)</span><br />
Return <code>True</code> iff the symbol matches for this state.</td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.match">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__str__">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a name="_facText"></a><span class="summary-sig-name">_facText</span>(<span class="summary-sig-arg">self</span>)</span></td>
<td align="right" valign="top">
<span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State._facText">source code</a></span>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS VARIABLES ==================== -->
<a name="section-ClassVariables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Class Variables</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-ClassVariables"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__automaton"></a><span class="summary-name">__automaton</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__symbol"></a><span class="summary-name">__symbol</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__isUnorderedCatenation"></a><span class="summary-name">__isUnorderedCatenation</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__subAutomata"></a><span class="summary-name">__subAutomata</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__isInitial"></a><span class="summary-name">__isInitial</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__automatonEntryTransitions"></a><span class="summary-name">__automatonEntryTransitions</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__finalUpdate"></a><span class="summary-name">__finalUpdate</span> = <code title="None">None</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__transitionSet"></a><span class="summary-name">__transitionSet</span> = <code title="None">None</code>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Properties</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Properties"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#automaton" class="summary-name">automaton</a><br />
Link to the <a href="pyxb.utils.fac.Automaton-class.html"
class="link">Automaton</a> to which the state belongs.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#symbol" class="summary-name">symbol</a><br />
Application-specific metadata identifying the symbol.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#isUnorderedCatenation" class="summary-name">isUnorderedCatenation</a><br />
Indicate whether the state has subautomata for unordered catenation.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#subAutomata" class="summary-name">subAutomata</a><br />
A sequence of sub-automata supporting internal state transitions.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#isInitial" class="summary-name">isInitial</a><br />
<code>True</code> iff this state may be the first state the automaton
enters.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#automatonEntryTransitions" class="summary-name">automatonEntryTransitions</a><br />
Return the set of initial transitions allowing entry to the automata
through this state.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#finalUpdate" class="summary-name">finalUpdate</a><br />
Return the update instructions that must be satisfied for this to be
a final state.
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a href="pyxb.utils.fac.State-class.html#transitionSet" class="summary-name">transitionSet</a><br />
Definitions of viable transitions from this state.
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Method Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-MethodDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">symbol</span>,
<span class="sig-arg">is_initial</span>,
<span class="sig-arg">final_update</span>=<span class="sig-default">None</span>,
<span class="sig-arg">is_unordered_catenation</span>=<span class="sig-default">False</span>)</span>
<br /><em class="fname">(Constructor)</em>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__init__">source code</a></span>
</td>
</tr></table>
<p>Create a FAC state.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>symbol</code></strong> - The symbol associated with the state. Normally initialized from
the <a href="pyxb.utils.fac.Node-class.html#metadata"
class="link">Symbol.metadata</a> value. The state may be entered
if, among other conditions, the <a
href="pyxb.utils.fac.State-class.html#match"
class="link">match</a> routine accepts the proposed input as
being consistent with this value.</li>
<li><strong class="pname"><code>is_initial</code></strong> - <code>True</code> iff this state may serve as the first state of
the automaton.</li>
<li><strong class="pname"><code>final_update</code></strong> - <code>None</code> if this state is not an accepting state of the
automaton; otherwise a set of <a
href="pyxb.utils.fac.UpdateInstruction-class.html"
class="link">UpdateInstruction</a> values that must be satisfied
by the counter values in a configuration as a further restriction
of acceptance.</li>
<li><strong class="pname"><code>is_unordered_catenation</code></strong> - <code>True</code> if this state has subautomata that must be
matched to execute the unordered catenation of an <a
href="pyxb.utils.fac.All-class.html" class="link">All</a> node;
<code>False</code> if this is a regular symbol.</li>
</ul></dd>
<dt>Overrides:
object.__init__
</dt>
</dl>
</td></tr></table>
</div>
<a name="__get_symbol"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__get_symbol</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_symbol">source code</a></span>
</td>
</tr></table>
<p>Application-specific metadata identifying the symbol.</p>
<p>See also <a href="pyxb.utils.fac.State-class.html#match"
class="link">match</a>.</p>
<dl class="fields">
</dl>
</td></tr></table>
</div>
<a name="__get_isUnorderedCatenation"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__get_isUnorderedCatenation</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_isUnorderedCatenation">source code</a></span>
</td>
</tr></table>
<p>Indicate whether the state has subautomata for unordered
catenation.</p>
<p>To reduce state explosion due to non-determinism, such a state
executes internal transitions in subautomata until all terms have matched
or a failure is discovered.</p>
<dl class="fields">
</dl>
</td></tr></table>
</div>
<a name="__get_subAutomata"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__get_subAutomata</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_subAutomata">source code</a></span>
</td>
</tr></table>
<p>A sequence of sub-automata supporting internal state transitions.</p>
<p>This will return <code>None</code> unless <a
href="pyxb.utils.fac.State-class.html#isUnorderedCatenation"
class="link">isUnorderedCatenation</a> is <code>True</code>.</p>
<dl class="fields">
</dl>
</td></tr></table>
</div>
<a name="__get_automatonEntryTransitions"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__get_automatonEntryTransitions</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_automatonEntryTransitions">source code</a></span>
</td>
</tr></table>
<p>Return the set of initial transitions allowing entry to the automata
through this state.</p>
<p>These are structurally-permitted transitions only, and must be
filtered based on the symbol that might trigger the transition. The
results are not filtered based on counter value, since this value is used
to determine how the containing automaton might be entered. Consequently
the return value is the empty set unless this is an initial state.</p>
<p>The returned set is closed under entry to sub-automata, i.e. it is
guaranteed that each transition includes a consuming state even if it
requires a multi-element chain of transitions into subautomata to reach
one.</p>
<dl class="fields">
</dl>
</td></tr></table>
</div>
<a name="subAutomataInitialTransitions"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">subAutomataInitialTransitions</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">sub_automata</span>=<span class="sig-default">None</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.subAutomataInitialTransitions">source code</a></span>
</td>
</tr></table>
<p>Return the set of candidate transitions to enter a sub-automaton of
this state.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>sub_automata</code></strong> - A subset of the sub-automata of this state which should
contribute to the result. If <code>None</code>, all sub-automata
are used.</li>
</ul></dd>
<dt>Returns:</dt>
<dd>A pair <code>(nullable, transitions)</code> where
<code>nullable</code> is <code>True</code> iff there is at least
one sub-automaton that is in an accepting state on entry, and
<code>transitions</code> is a list of <a
href="pyxb.utils.fac.Transition-class.html"
class="link">Transition</a> instances describing how to reach
some state in a sub-automaton via a consumed symbol.</dd>
</dl>
</td></tr></table>
</div>
<a name="isAccepting"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">isAccepting</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">counter_values</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.isAccepting">source code</a></span>
</td>
</tr></table>
<p><code>True</code> iff this state is an accepting state for the
automaton.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>counter_values</code></strong> - Counter values that further validate whether the requirements of
the automaton have been met.</li>
</ul></dd>
<dt>Returns:</dt>
<dd><code>True</code> if this is an accepting state and the counter
values relevant at it are satisfied.</dd>
</dl>
</td></tr></table>
</div>
<a name="__get_transitionSet"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__get_transitionSet</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__get_transitionSet">source code</a></span>
</td>
</tr></table>
<p>Definitions of viable transitions from this state.</p>
<p>The transition set of a state is a set of <a
href="pyxb.utils.fac.Transition-class.html" class="link">Transition</a>
nodes identifying a state reachable in a single step from this state, and
a set of counter updates that must apply if the transition is taken.</p>
<p>These transitions may not in themselves consume a symbol. For
example, if the destination state represents a match of an <a
href="pyxb.utils.fac.All-class.html" class="link">unordered catenation of
terms</a>, then secondary processing must be done to traverse into the
automata for those terms and identify transitions that include a symbol
consumption.</p>
<dl class="fields">
</dl>
<div class="fields"> <p><strong>Note:</strong>
Although conceptually the viable transitions are a set, this
implementation maintains them in a list so that order is preserved
when automata processing becomes non-deterministic. PyXB is careful
to build the transition list so that the states are attempted in
the order in which they appear in the schema that define the
automata.
</p>
</div></td></tr></table>
</div>
<a name="_set_transitionSet"></a>
<div class="private">
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">_set_transitionSet</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">transition_set</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State._set_transitionSet">source code</a></span>
</td>
</tr></table>
<p>Method invoked during automaton construction to set the legal
transitions from the state.</p>
<p>The set of transitions cannot be defined until all states that appear
in it are available, so the creation of the automaton requires that the
association of the transition set be delayed. (Though described as a
set, the transitions are a list where order reflects priority.)</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>transition_set</code></strong> - a list of pairs where the first member is the destination <a
href="pyxb.utils.fac.State-class.html" class="link">State</a> and
the second member is the set of <a
href="pyxb.utils.fac.UpdateInstruction-class.html"
class="link">UpdateInstruction</a>s that apply when the automaton
transitions to the destination state.</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="match"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">match</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">symbol</span>)</span>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.match">source code</a></span>
</td>
</tr></table>
<p>Return <code>True</code> iff the symbol matches for this state.</p>
<p>This may be overridden by subclasses when matching by equivalence does
not work. Alternatively, if the symbol stored in this node is a subclass
of <a href="pyxb.utils.fac.SymbolMatch_mixin-class.html"
class="link">SymbolMatch_mixin</a>, then its match method will be used.
Otherwise <code>symbol</code> matches only if it is equal to the <a
href="pyxb.utils.fac.State-class.html#symbol" class="link">symbol</a> of
this state.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>symbol</code></strong> - A candidate symbol corresponding to the expression symbol for
this state.</li>
</ul></dd>
<dt>Returns:</dt>
<dd><code>True</code> iff <code>symbol</code> is a match for this
state.</dd>
</dl>
</td></tr></table>
</div>
<a name="__str__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span>
<br /><em class="fname">(Informal representation operator)</em>
</h3>
</td><td align="right" valign="top"
><span class="codelink"><a href="pyxb.utils.fac-pysrc.html#State.__str__">source code</a></span>
</td>
</tr></table>
<dl class="fields">
<dt>Overrides:
object.__str__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== PROPERTY DETAILS ==================== -->
<a name="section-PropertyDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Property Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-PropertyDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="automaton"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">automaton</h3>
<p>Link to the <a href="pyxb.utils.fac.Automaton-class.html"
class="link">Automaton</a> to which the state belongs.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_automaton" class="summary-sig-name" onclick="show_private();">__get_automaton</a>(<span class="summary-sig-arg">self</span>)</span>
- Link to the <a href="pyxb.utils.fac.Automaton-class.html"
class="link">Automaton</a> to which the state belongs.
</dd>
</dl>
</td></tr></table>
</div>
<a name="symbol"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">symbol</h3>
<p>Application-specific metadata identifying the symbol.</p>
<p>See also <a href="pyxb.utils.fac.State-class.html#match"
class="link">match</a>.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_symbol" class="summary-sig-name" onclick="show_private();">__get_symbol</a>(<span class="summary-sig-arg">self</span>)</span>
- Application-specific metadata identifying the symbol.
</dd>
</dl>
</td></tr></table>
</div>
<a name="isUnorderedCatenation"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">isUnorderedCatenation</h3>
<p>Indicate whether the state has subautomata for unordered
catenation.</p>
<p>To reduce state explosion due to non-determinism, such a state
executes internal transitions in subautomata until all terms have matched
or a failure is discovered.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_isUnorderedCatenation" class="summary-sig-name" onclick="show_private();">__get_isUnorderedCatenation</a>(<span class="summary-sig-arg">self</span>)</span>
- Indicate whether the state has subautomata for unordered catenation.
</dd>
</dl>
</td></tr></table>
</div>
<a name="subAutomata"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">subAutomata</h3>
<p>A sequence of sub-automata supporting internal state transitions.</p>
<p>This will return <code>None</code> unless <a
href="pyxb.utils.fac.State-class.html#isUnorderedCatenation"
class="link">isUnorderedCatenation</a> is <code>True</code>.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_subAutomata" class="summary-sig-name" onclick="show_private();">__get_subAutomata</a>(<span class="summary-sig-arg">self</span>)</span>
- A sequence of sub-automata supporting internal state transitions.
</dd>
</dl>
</td></tr></table>
</div>
<a name="isInitial"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">isInitial</h3>
<p><code>True</code> iff this state may be the first state the automaton
enters.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_isInitial" class="summary-sig-name" onclick="show_private();">__get_isInitial</a>(<span class="summary-sig-arg">self</span>)</span>
- <code>True</code> iff this state may be the first state the automaton
enters.
</dd>
</dl>
</td></tr></table>
</div>
<a name="automatonEntryTransitions"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">automatonEntryTransitions</h3>
<p>Return the set of initial transitions allowing entry to the automata
through this state.</p>
<p>These are structurally-permitted transitions only, and must be
filtered based on the symbol that might trigger the transition. The
results are not filtered based on counter value, since this value is used
to determine how the containing automaton might be entered. Consequently
the return value is the empty set unless this is an initial state.</p>
<p>The returned set is closed under entry to sub-automata, i.e. it is
guaranteed that each transition includes a consuming state even if it
requires a multi-element chain of transitions into subautomata to reach
one.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_automatonEntryTransitions" class="summary-sig-name" onclick="show_private();">__get_automatonEntryTransitions</a>(<span class="summary-sig-arg">self</span>)</span>
- Return the set of initial transitions allowing entry to the automata
through this state.
</dd>
</dl>
</td></tr></table>
</div>
<a name="finalUpdate"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">finalUpdate</h3>
<p>Return the update instructions that must be satisfied for this to be a
final state.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_finalUpdate" class="summary-sig-name" onclick="show_private();">__get_finalUpdate</a>(<span class="summary-sig-arg">self</span>)</span>
- Return the update instructions that must be satisfied for this to be
a final state.
</dd>
</dl>
</td></tr></table>
</div>
<a name="transitionSet"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<h3 class="epydoc">transitionSet</h3>
<p>Definitions of viable transitions from this state.</p>
<p>The transition set of a state is a set of <a
href="pyxb.utils.fac.Transition-class.html" class="link">Transition</a>
nodes identifying a state reachable in a single step from this state, and
a set of counter updates that must apply if the transition is taken.</p>
<p>These transitions may not in themselves consume a symbol. For
example, if the destination state represents a match of an <a
href="pyxb.utils.fac.All-class.html" class="link">unordered catenation of
terms</a>, then secondary processing must be done to traverse into the
automata for those terms and identify transitions that include a symbol
consumption.</p>
<dl class="fields">
<dt>Get Method:</dt>
<dd class="value"><span class="summary-sig"><a href="pyxb.utils.fac.State-class.html#__get_transitionSet" class="summary-sig-name" onclick="show_private();">__get_transitionSet</a>(<span class="summary-sig-arg">self</span>)</span>
- Definitions of viable transitions from this state.
</dd>
</dl>
<div class="fields"> <p><strong>Note:</strong>
Although conceptually the viable transitions are a set, this
implementation maintains them in a list so that order is preserved
when automata processing becomes non-deterministic. PyXB is careful
to build the transition list so that the states are attempted in
the order in which they appear in the schema that define the
automata.
</p>
</div></td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="pyxb-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>PyXB hosted on <a href="http://sourceforge.net/projects/pyxb"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=263147&type=9" width="80" height="15" alt="Get PyXB: Python XML Schema Bindings at SourceForge.net. Fast, secure and Free Open Source software downloads"/></a></th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1
on Wed Sep 18 10:35:37 2013
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|