summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/palettes/math/palette.composite
blob: f835d8df033ad3a1d33e01155cfa5111a05492aa (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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="UTF-8"?>
<!--
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
  xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
  targetNamespace="http://math"
  name="palette">
        
    <service name="multiply" promote="multiply"/>
    <service name="divide" promote="divide"/>
    <service name="add" promote="add"/>
    <service name="subtract" promote="subtract"/>
    <service name="distance" promote="distance"/>
    <service name="random" promote="random"/>
    <service name="sin" promote="sin"/>
    <service name="cos" promote="cos"/>
    <service name="round" promote="round"/>
    <service name="sum" promote="sum"/>
    <service name="min" promote="min"/>
    <service name="max" promote="max"/>

    <component name="multiply" t:title="*" t:color="magenta1">
        <t:implementation.python script="nuvem/multiply.py"/>
        <service name="multiply">
            <documentation>*</documentation>
        </service>
        <reference name="value1"/>
        <reference name="value2"/>
    </component>
    
    <component name="divide" t:title="/" t:color="magenta1">
        <t:implementation.python script="nuvem/divide.py"/>
        <service name="divide">
            <documentation>/</documentation>
        </service>
        <reference name="value1"/>
        <reference name="value2"/>
    </component>
    
    <component name="add" t:title="+" t:color="magenta1">
        <t:implementation.python script="nuvem/add.py"/>
        <service name="add">
            <documentation>+</documentation>
        </service>
        <reference name="value1"/>
        <reference name="value2"/>
    </component>
    
    <component name="subtract" t:title="-" t:color="magenta1">
        <t:implementation.python script="nuvem/subtract.py"/>
        <service name="subtract">
            <documentation>-</documentation>
        </service>
        <reference name="value1"/>
        <reference name="value2"/>
    </component>
    
    <component name="distance" t:title="distance **" t:color="magenta1">
        <t:implementation.python script="nuvem/distance.py"/>
        <service name="distance"/>
        <reference name="location1"/>
        <reference name="location2"/>
    </component>
    
    <component name="random" t:title="rand" t:color="magenta1">
        <t:implementation.python script="nuvem/random_.py"/>
        <service name="random"/>
    </component>
    
    <component name="sin" t:title="sin" t:color="magenta1">
        <t:implementation.python script="nuvem/sin_.py"/>
        <service name="sin"/>
        <reference name="x"/>
    </component>
    
    <component name="cos" t:title="cos" t:color="magenta1">
        <t:implementation.python script="nuvem/cos_.py"/>
        <service name="cos"/>
        <reference name="x"/>
    </component>
    
    <component name="round" t:title="round" t:color="magenta1">
        <t:implementation.python script="nuvem/round_.py"/>
        <service name="round"/>
        <reference name="n"/>
        <reference name="x"/>
    </component>
    
    <component name="sum" t:title="sum" t:color="magenta1">
        <t:implementation.python script="nuvem/sum_.py"/>
        <service name="sum"/>
        <reference name="l"/>
    </component>
    
    <component name="min" t:title="min" t:color="magenta1">
        <t:implementation.python script="nuvem/min_.py"/>
        <service name="min"/>
        <reference name="l"/>
    </component>
    
    <component name="max" t:title="max" t:color="magenta1">
        <t:implementation.python script="nuvem/max_.py"/>
        <service name="max"/>
        <reference name="l"/>
    </component>
    
</composite>