-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestbed.refifaces.module.yaml
More file actions
93 lines (91 loc) · 2.12 KB
/
testbed.refifaces.module.yaml
File metadata and controls
93 lines (91 loc) · 2.12 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
schema: apigear.module/1.0
name: tb.ref_ifaces
version: "1.0.0"
imports:
- name: tb.ifaceimport
# version: 1.0.0
interfaces:
- name: SimpleLocalIf
properties:
- name: intProperty
type: int
operations:
- name: intMethod
params:
- name: param
type: int
return:
type: int
signals:
- name: intSignal
params:
- name: param
type: int
- name: ParentIf
properties:
- name: localIf
type: SimpleLocalIf
- name: localIfList
type: SimpleLocalIf
array: true
- name: importedIf
type: EmptyIf
import: tb.ifaceimport
- name: importedIfList
type: EmptyIf
array: true
import: tb.ifaceimport
operations:
- name: localIfMethod
params:
- name: param
type: SimpleLocalIf
return:
type: SimpleLocalIf
- name: localIfMethodList
params:
- name: param
type: SimpleLocalIf
array: true
return:
type: SimpleLocalIf
array: true
- name: importedIfMethod
params:
- name: param
type: EmptyIf
import: tb.ifaceimport
return:
type: EmptyIf
import: tb.ifaceimport
- name: importedIfMethodList
params:
- name: param
type: EmptyIf
array: true
import: tb.ifaceimport
return:
type: EmptyIf
array: true
import: tb.ifaceimport
signals:
- name: localIfSignal
params:
- name: param
type: SimpleLocalIf
- name: localIfSignalList
params:
- name: param
type: SimpleLocalIf
array: true
- name: importedIfSignal
params:
- name: param
type: EmptyIf
import: tb.ifaceimport
- name: importedIfSignalList
params:
- name: param
type: EmptyIf
array: true
import: tb.ifaceimport