summaryrefslogtreecommitdiff
path: root/src/lib/eldbus/eldbus_model_arguments.eo
blob: 66f414dfc3b103dd427681edfaeb3afb9c05e1ab (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
import eldbus_types;

class @beta Eldbus.Model.Arguments extends Eldbus.Model {
    [[Eldbus model arguments class]]

    methods {
        custom_constructor {
            [[Custom Eldbus_Model_Arguments constructor.

            @since 1.16]]
            params {
                @in proxy: ptr(Eldbus.Proxy); [[Eldbus proxy]]
                @in name: string; [[Name]]
                @in arguments: const(list<Eldbus.Introspection.Argument>); [[The introspected arguments]]
            }
        }
    @property arg_name {
            [[Name of the argument]]
            get {}
            values {
                name: string; [[Argument name]]
            }
        }
    }
    implements {
        Efl.Object.constructor;
        Efl.Object.finalize;
        Efl.Object.invalidate;
        Efl.Model.properties { get; }
        Efl.Model.property { set; get; }
    }
    constructors {
        .custom_constructor;
    }
}