diff options
Diffstat (limited to 'sca-cpp/trunk/modules/edit/palettes/value/palette.composite')
-rw-r--r-- | sca-cpp/trunk/modules/edit/palettes/value/palette.composite | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/sca-cpp/trunk/modules/edit/palettes/value/palette.composite b/sca-cpp/trunk/modules/edit/palettes/value/palette.composite new file mode 100644 index 0000000000..abdb47e460 --- /dev/null +++ b/sca-cpp/trunk/modules/edit/palettes/value/palette.composite @@ -0,0 +1,80 @@ +<?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://value" + name="palette"> + + <service name="text" promote="text"/> + <service name="number" promote="number"/> + <service name="name" promote="name"/> + <service name="valueof" promote="valueof"/> + <service name="assoc" promote="assoc"/> + <service name="nothing" promote="nothing"/> + <service name="true" promote="true"/> + <service name="false" promote="false"/> + + <component name="text" t:title="text" t:color="orange1"> + <t:implementation.python script="nuvem/text.py"/> + <service name="text"/> + <property name="property">abc</property> + </component> + + <component name="number" t:title="number" t:color="orange1"> + <t:implementation.python script="nuvem/number.py"/> + <service name="number"/> + <property name="property">0</property> + </component> + + <component name="name" t:title="name" t:color="orange1"> + <t:implementation.python script="nuvem/name.py"/> + <service name="name"/> + <property name="property">name</property> + </component> + + <component name="valueof" t:title="value of" t:color="orange1"> + <t:implementation.python script="nuvem/valueof.py"/> + <service name="valueof"/> + <property name="name">name</property> + </component> + + <component name="assoc" t:title="assoc" t:color="orange1"> + <t:implementation.python script="nuvem/assoc.py"/> + <service name="assoc"/> + <reference name="name"/> + <reference name="value"/> + </component> + + <component name="nothing" t:title="nothing" t:color="orange1"> + <t:implementation.python script="nuvem/nothing.py"/> + <service name="nothing"/> + </component> + + <component name="true" t:title="true" t:color="orange1"> + <t:implementation.python script="nuvem/true_.py"/> + <service name="true"/> + </component> + + <component name="false" t:title="false" t:color="orange1"> + <t:implementation.python script="nuvem/false_.py"/> + <service name="false"/> + </component> + +</composite> |