Salome HOME
Update copyrights
[samples/datafiles.git] / Yacs / Schemas / dschema.xml
1 <!--
2   Copyright (C) 2006-2019  CEA/DEN, EDF R&D
3
4   This library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License, or (at your option) any later version.
8
9   This library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this library; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 -->
21 <proc>
22
23     <!-- types -->
24     <!-- inline -->
25     <!-- service -->
26
27     <service name="node1" >
28         <component>PYHELLO</component>
29         <method>makeBanner</method>
30         <inport name="p1" type="string"/>
31         <outport name="p1" type="string"/>
32     </service>
33
34     <service name="node3" >
35         <component>PYHELLO</component>
36         <method>makeBanner</method>
37         <inport name="p1" type="string"/>
38         <outport name="p1" type="string"/>
39     </service>
40
41     <service name="node2" >
42         <node>node1</node>
43         <method>makeBanner</method>
44         <inport name="p1" type="string"/>
45         <outport name="p1" type="string"/>
46     </service>
47
48     <!--control -->
49     <control> <fromnode>node1</fromnode> <tonode>node2</tonode> </control>
50     <control> <fromnode>node1</fromnode> <tonode>node3</tonode> </control>
51
52     <!--datalinks -->
53     <datalink> 
54         <fromnode>node1</fromnode><fromport>p1</fromport>
55         <tonode>node2</tonode> <toport>p1</toport> 
56     </datalink>
57     <datalink> 
58         <fromnode>node1</fromnode><fromport>p1</fromport>
59         <tonode>node3</tonode> <toport>p1</toport> 
60     </datalink>
61
62     <!--parameters -->
63     <parameter>
64         <tonode>node1</tonode> <toport>p1</toport>
65         <value><string>coucou</string></value>
66     </parameter>
67
68 </proc>