File: statemachine.xml

package info (click to toggle)
dbus-glib 0.102-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,204 kB
  • ctags: 2,220
  • sloc: ansic: 23,360; sh: 11,545; makefile: 607; xml: 532
file content (33 lines) | stat: -rw-r--r-- 700 bytes parent folder | download | duplicates (11)
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
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/">
  <interface name="com.example.StateMachine">

    <method name="GetInfo">
      <arg type="s" name="name" direction="out"/>
      <arg type="s" name="state" direction="out"/>
    </method>

    <method name="Start">
    </method>

    <method name="Shutdown">
    </method>

    <method name="Reinitialize">
    </method>

    <method name="Reacquire">
    </method>

    <method name="GetAcquiringProgress">
      <arg type="d" direction="out"/>
    </method>

    <!-- Mark the signals as exported -->
    <signal name="StateChanged"/>
    <signal name="AcquisitionFailed"/>
    <signal name="AcquisitionProgress"/>

  </interface>
</node>