summaryrefslogtreecommitdiff
path: root/DAnCE/bin/PythonDAnCE/generator/comp_impl.py
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/bin/PythonDAnCE/generator/comp_impl.py')
-rwxr-xr-xDAnCE/bin/PythonDAnCE/generator/comp_impl.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/DAnCE/bin/PythonDAnCE/generator/comp_impl.py b/DAnCE/bin/PythonDAnCE/generator/comp_impl.py
deleted file mode 100755
index df41ffa4abf..00000000000
--- a/DAnCE/bin/PythonDAnCE/generator/comp_impl.py
+++ /dev/null
@@ -1,59 +0,0 @@
-
-from templet import stringfunction
-
-@stringfunction
-def template (component_name, namespace) :
- """
-
- <implementation xmi:id="${component_name}ComponentImplementation">
- <name>${component_name}ComponentImplementation</name>
- <source/>
- <artifact xmi:idref="${component_name}_ExecArtifact" />
- <artifact xmi:idref="${component_name}_SvntArtifact" />
- <execParameter>
- <!-- entrypoint as exec parameter (see 10.6.1) -->
- <name>component factory</name>
- <value>
- <type>
- <kind>tk_string</kind>
- </type>
- <value>
- <string>create_${namespace}${component_name}_Impl</string>
- </value>
- </value>
- </execParameter>
- <execParameter>
- <name>edu.vanderbilt.dre.CIAO.ServantEntrypoint</name>
- <value>
- <type>
- <kind>tk_string</kind>
- </type>
- <value>
- <string>create_${namespace}${component_name}_Servant</string>
- </value>
- </value>
- </execParameter>
- <execParameter>
- <name>edu.vanderbilt.dre.CIAO.ServantArtifact</name>
- <value>
- <type>
- <kind>tk_string</kind>
- </type>
- <value>
- <string>${component_name}_svnt</string>
- </value>
- </value>
- </execParameter>
- <execParameter>
- <name>edu.vanderbilt.dre.CIAO.ExecutorArtifact</name>
- <value>
- <type>
- <kind>tk_string</kind>
- </type>
- <value>
- <string>${component_name}_exec</string>
- </value>
- </value>
- </execParameter>
- </implementation>
-"""