source:
trunk/t3q-examples/checkNoAllKeywordInPortDefinitions/checkNoAllKeywordInPortDefinitions.ttcn3
@
58
Last change on this file since 58 was 4, checked in by phdmakk, 14 years ago | |
---|---|
File size: 341 bytes |
Line | |
---|---|
1 | module checkNoAllKeywordInPortDefinitions { |
2 | |
3 | type port samplePortType_m0 message { |
4 | in charstring |
5 | out integer |
6 | } |
7 | |
8 | |
9 | type port samplePortType_m1 message { |
10 | inout all |
11 | in charstring |
12 | out integer |
13 | } |
14 | |
15 | type port samplePortType_p0 procedure { |
16 | in a |
17 | out b |
18 | } |
19 | |
20 | |
21 | type port samplePortType_p1 procedure { |
22 | inout a |
23 | in all |
24 | out all |
25 | |
26 | } |
27 | |
28 | } |
Note: See TracBrowser
for help on using the repository browser.