Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2013-06-13 10:28:28 +0000
committerHenrik Rentz-Reichert2013-06-13 10:28:28 +0000
commit4ea3b2d1694764ee35da87a5f48ffe4da16a00df (patch)
tree8d79f11940d5acc0fd11f2990298d4e5ae6eebb3 /plugins/org.eclipse.etrice.core.etmap/src
parent87f5e1cc66bd59f8c556adf37c6b46bc5d636342 (diff)
downloadorg.eclipse.etrice-4ea3b2d1694764ee35da87a5f48ffe4da16a00df.tar.gz
org.eclipse.etrice-4ea3b2d1694764ee35da87a5f48ffe4da16a00df.tar.xz
org.eclipse.etrice-4ea3b2d1694764ee35da87a5f48ffe4da16a00df.zip
[doc] bug 410652: use LaTex listings package for ROOM listings
https://bugs.eclipse.org/bugs/show_bug.cgi?id=410652 remaining languages defined and some preliminary examples added
Diffstat (limited to 'plugins/org.eclipse.etrice.core.etmap/src')
-rw-r--r--plugins/org.eclipse.etrice.core.etmap/src/org/eclipse/etrice/core/etmap/formatting/ETMapFormatter.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.core.etmap/src/org/eclipse/etrice/core/etmap/formatting/ETMapFormatter.java b/plugins/org.eclipse.etrice.core.etmap/src/org/eclipse/etrice/core/etmap/formatting/ETMapFormatter.java
index 3956304a0..f5f030d0d 100644
--- a/plugins/org.eclipse.etrice.core.etmap/src/org/eclipse/etrice/core/etmap/formatting/ETMapFormatter.java
+++ b/plugins/org.eclipse.etrice.core.etmap/src/org/eclipse/etrice/core/etmap/formatting/ETMapFormatter.java
@@ -33,6 +33,11 @@ public class ETMapFormatter extends AbstractDeclarativeFormatter {
ETMapGrammarAccess f = (ETMapGrammarAccess) getGrammarAccess();
// general
+// Set<String> keywords = GrammarUtil.getAllKeywords(grammar.getGrammar());
+// System.out.println("etMap keywords:");
+// for (String kw : keywords) {
+// System.out.println(kw+",");
+// }
c.setAutoLinewrap(120);
c.setLinewrap(1).before(f.getSL_COMMENTRule());

Back to the top