EventTypes.datatype

Custom datatype for the event attribute in SCXML based on xsd:token.
Example legal values:
	*
	foo
	foo.bar
	foo.*
	foo.bar.*
	foo bar baz
	foo.bar bar.* baz.foo.*

Simple Type Information

Used By

Source

<xsd:simpleType name="EventTypes.datatype">
  <xsd:annotation>
    <xsd:documentation>Custom datatype for the event attribute in SCXML based on xsd:token. Example legal values: * foo foo.bar foo.* foo.bar.* foo bar baz foo.bar bar.* baz.foo.*</xsd:documentation>
  </xsd:annotation>
  <xsd:restriction base="xsd:token">
    <xsd:pattern value="\.?\*|(\i|\d|\-)+(\.(\i|\d|\-)+)*(\.\*)?(\s(\i|\d|\-)+(\.(\i|\d|\-)+)*(\.\*)?)*"/>
  </xsd:restriction>
</xsd:simpleType>