Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/jetsrc/org/eclipse/papyrus/cpp/codegen/jet/util/CppClassInlineOperationsImplementation.java')
-rw-r--r--extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/jetsrc/org/eclipse/papyrus/cpp/codegen/jet/util/CppClassInlineOperationsImplementation.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/jetsrc/org/eclipse/papyrus/cpp/codegen/jet/util/CppClassInlineOperationsImplementation.java b/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/jetsrc/org/eclipse/papyrus/cpp/codegen/jet/util/CppClassInlineOperationsImplementation.java
new file mode 100644
index 00000000000..4ff043d4116
--- /dev/null
+++ b/extraplugins/codegen/org.eclipse.papyrus.cpp.codegen/jetsrc/org/eclipse/papyrus/cpp/codegen/jet/util/CppClassInlineOperationsImplementation.java
@@ -0,0 +1,63 @@
+/*******************************************************************************
+ * Copyright (c) 2006 CEA List.
+ * All rights reserved. This program and the accompanying materials
+ * are property of the CEA, their use is subject to specific agreement
+ * with the CEA.
+ *
+ * Contributors:
+ * CEA List - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.papyrus.cpp.codegen.jet.util;
+
+import org.eclipse.uml2.uml.*;
+import java.util.Iterator;
+import org.eclipse.papyrus.cpp.codegen.utils.GenUtils;
+import Cpp.*;
+
+public class CppClassInlineOperationsImplementation
+{
+ protected static String nl;
+ public static synchronized CppClassInlineOperationsImplementation create(String lineSeparator)
+ {
+ nl = lineSeparator;
+ CppClassInlineOperationsImplementation result = new CppClassInlineOperationsImplementation();
+ nl = null;
+ return result;
+ }
+
+ public final String NL = nl == null ? (System.getProperties().getProperty("line.separator")) : nl;
+ protected final String TEXT_1 = "";
+
+ public String generate(Object argument)
+ {
+ final StringBuffer stringBuffer = new StringBuffer();
+
+//////////////////////////////////////////////////////////////////////////////////////////
+// Java preparation
+//////////////////////////////////////////////////////////////////////////////////////////
+
+ // Retrieve the class
+ Classifier currentClass = (Classifier) argument;
+ String opDecl = "";
+
+ // Retrieve operations
+ Iterator<Operation> operations = currentClass.getOperations().iterator();
+ while (operations.hasNext()) {
+ Operation currentOp = operations.next();
+ if (GenUtils.hasStereotype (currentOp, CppInline.class) &&
+ !GenUtils.hasStereotype (currentOp, CppNoCodeGen.class)) {
+
+ CppOperationImplementation jetOpImpl = new CppOperationImplementation();
+ opDecl = opDecl+jetOpImpl.generate(currentOp);
+ }
+ }
+
+//////////////////////////////////////////////////////////////////////////////////////////
+// The following part contains the template
+//////////////////////////////////////////////////////////////////////////////////////////
+ stringBuffer.append(TEXT_1);
+ stringBuffer.append( opDecl );
+ return stringBuffer.toString();
+ }
+} \ No newline at end of file

Back to the top