blob: d64ded488df8536385692a07bf288b71e870445e (
plain)
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
|
<!DOCTYPE node PUBLIC
"-//freedesktop//DTD D-Bus Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<!--
org.gnome.evolution.dataserver.CalendarFactory:
@short_description: Factory for calendar objects
@since: 3.8
This interface provides access to Calendar interfaces.
-->
<interface name="org.gnome.evolution.dataserver.CalendarFactory">
<!--
OpenCalendar:
@source_uid: Unique identifier for a data source
@object_path: Object path of the calendar backend
@since: 3.8
Returns the object path of the calendar backend for @uid.
-->
<method name="OpenCalendar">
<arg name="source_uid" direction="in" type="s"/>
<arg name="object_path" direction="out" type="s"/>
</method>
<!--
OpenTaskList:
@source_uid: Unique identifier for a data source
@object_path: Object path of the task list backend
@since: 3.8
Returns the object path of the task list backend for @uid.
-->
<method name="OpenTaskList">
<arg name="source_uid" direction="in" type="s"/>
<arg name="object_path" direction="out" type="s"/>
</method>
<!--
OpenMemoList:
@source_uid: Unique identifier for a data source
@object_path: Object path of the memo list backend
@since: 3.8
Returns the object path of the memo list backend for @uid.
-->
<method name="OpenMemoList">
<arg name="source_uid" direction="in" type="s"/>
<arg name="object_path" direction="out" type="s"/>
</method>
</interface>
|