Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/templates/doc/CppElementDoc.doc.jet')
-rw-r--r--extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/templates/doc/CppElementDoc.doc.jet27
1 files changed, 0 insertions, 27 deletions
diff --git a/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/templates/doc/CppElementDoc.doc.jet b/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/templates/doc/CppElementDoc.doc.jet
deleted file mode 100644
index 2a0e5b591c7..00000000000
--- a/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/templates/doc/CppElementDoc.doc.jet
+++ /dev/null
@@ -1,27 +0,0 @@
-<%@ jet package = "org.eclipse.papyrus.cpp.codegen.jet.doc"
- skeleton = "../generator.skeleton"
- imports = "org.eclipse.uml2.uml.Element org.eclipse.papyrus.cpp.codegen.utils.GenUtils"
- class = "CppElementDoc"
- %>
-<%
-//////////////////////////////////////////////////////////////////////////////////////////
-// Java preparation
-//////////////////////////////////////////////////////////////////////////////////////////
-
- // Retrieve the element
- Element currentElt = (Element) argument;
- String eltDoc = "";
-
-
- // Doc for the element
- eltDoc = GenUtils.getComments(currentElt);
- eltDoc = eltDoc.replaceAll(NL, NL+" * ");
-
-
-
-//////////////////////////////////////////////////////////////////////////////////////////
-// The following part contains the template
-//////////////////////////////////////////////////////////////////////////////////////////%>
-/**
- * <%= eltDoc %>
- */ \ No newline at end of file

Back to the top