summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/edit/palettes/math/palette.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/modules/edit/palettes/math/palette.composite207
1 files changed, 86 insertions, 121 deletions
diff --git a/sca-cpp/trunk/modules/edit/palettes/math/palette.composite b/sca-cpp/trunk/modules/edit/palettes/math/palette.composite
index f835d8df03..f8d7ced4b8 100644
--- a/sca-cpp/trunk/modules/edit/palettes/math/palette.composite
+++ b/sca-cpp/trunk/modules/edit/palettes/math/palette.composite
@@ -1,123 +1,88 @@
<?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 xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912" name="palette" targetNamespace="http://palette">
+ <service name="add" promote="add"/>
+ <service name="cos" promote="cos"/>
+ <service name="distance" promote="distance"/>
+ <service name="divide" promote="divide"/>
+ <service name="max" promote="max"/>
+ <service name="min" promote="min"/>
+ <service name="multiply" promote="multiply"/>
+ <service name="random" promote="random"/>
+ <service name="round" promote="round"/>
+ <service name="sin" promote="sin"/>
+ <service name="subtract" promote="subtract"/>
+ <service name="sum" promote="sum"/>
+ <component x="90" y="10" name="add" title="+" color="magenta1">
+ <implementation.python script="nuvem/add.py"/>
+ <service name="add">
+ <documentation>+</documentation>
+ </service>
+ <reference name="value1"/>
+ <reference name="value2"/>
+ </component>
+ <component x="250" y="200" name="cos" title="cos" color="magenta1">
+ <implementation.python script="nuvem/cos_.py"/>
+ <service name="cos"/>
+ <reference name="x"/>
+ </component>
+ <component x="90" y="200" name="distance" title="distance **" color="magenta1">
+ <implementation.python script="nuvem/distance.py"/>
+ <service name="distance"/>
+ <reference name="location1"/>
+ <reference name="location2"/>
+ </component>
+ <component x="270" y="10" name="divide" title="/" color="magenta1">
+ <implementation.python script="nuvem/divide.py"/>
+ <service name="divide">
+ <documentation>/</documentation>
+ </service>
+ <reference name="value1"/>
+ <reference name="value2"/>
+ </component>
+ <component x="160" y="80" name="max" title="max" color="magenta1">
+ <implementation.python script="nuvem/max_.py"/>
+ <service name="max"/>
+ <reference name="l"/>
+ </component>
+ <component x="230" y="80" name="min" title="min" color="magenta1">
+ <implementation.python script="nuvem/min_.py"/>
+ <service name="min"/>
+ <reference name="l"/>
+ </component>
+ <component x="210" y="10" name="multiply" title="*" color="magenta1">
+ <implementation.python script="nuvem/multiply.py"/>
+ <service name="multiply">
+ <documentation>*</documentation>
+ </service>
+ <reference name="value1"/>
+ <reference name="value2"/>
+ </component>
+ <component x="170" y="130" name="random" title="rand" color="magenta1">
+ <implementation.python script="nuvem/random_.py"/>
+ <service name="random"/>
+ </component>
+ <component x="90" y="130" name="round" title="round" color="magenta1">
+ <implementation.python script="nuvem/round_.py"/>
+ <service name="round"/>
+ <reference name="n"/>
+ <reference name="x"/>
+ </component>
+ <component x="190" y="200" name="sin" title="sin" color="magenta1">
+ <implementation.python script="nuvem/sin_.py"/>
+ <service name="sin"/>
+ <reference name="x"/>
+ </component>
+ <component x="150" y="10" name="subtract" title="-" color="magenta1">
+ <implementation.python script="nuvem/subtract.py"/>
+ <service name="subtract">
+ <documentation>-</documentation>
+ </service>
+ <reference name="value1"/>
+ <reference name="value2"/>
+ </component>
+ <component x="90" y="80" name="sum" title="sum" color="magenta1">
+ <implementation.python script="nuvem/sum_.py"/>
+ <service name="sum"/>
+ <reference name="l"/>
+ </component>
</composite>