blob: f835d8df033ad3a1d33e01155cfa5111a05492aa [file] [log] [blame]
<?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>