File: eventnames.scxml

package info (click to toggle)
qt6-scxml 6.10.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,784 kB
  • sloc: cpp: 28,850; javascript: 330; sh: 95; python: 78; makefile: 26
file content (30 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" ?>
<!--
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
-->
<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" name="eventnames">
    <state id="a">
        <onentry>
            <send event="valid"/>
            <send event="still.valid"/>
            <send event="still-valid"/>
            <send event="still:valid"/>
            <send event="-valid-"/>
            <send event=".invalid"/>
            <send event="invalid."/>
            <send event="in valid"/>
            <send event="&#x00ff;valid"/>
        </onentry>

        <transition event="valid"/>
        <transition event="still.valid"/>
        <transition event="still-valid"/>
        <transition event="still:valid"/>
        <transition event="-valid-"/>
        <transition event=".invalid"/>
        <transition event="invalid."/>
        <transition event="also valid"/>
        <transition event="&#x00ff;valid"/>
    </state>
</scxml>