Modidy a package name of nemo
[nemo.git] / nemo-tools / eclipse-plugin / nemo-editor / org.opendaylight.nemo.tool.eclipse.plugin.editor / src / org / opendaylight / nemo / tool / eclipse / plugin / formatting / EditorFormatter.xtend
diff --git a/nemo-tools/eclipse-plugin/nemo-editor/org.opendaylight.nemo.tool.eclipse.plugin.editor/src/org/opendaylight/nemo/tool/eclipse/plugin/formatting/EditorFormatter.xtend b/nemo-tools/eclipse-plugin/nemo-editor/org.opendaylight.nemo.tool.eclipse.plugin.editor/src/org/opendaylight/nemo/tool/eclipse/plugin/formatting/EditorFormatter.xtend
new file mode 100644 (file)
index 0000000..5652459
--- /dev/null
@@ -0,0 +1,30 @@
+/*
+ * generated by Xtext
+ */
+package org.opendaylight.nemo.tool.eclipse.plugin.formatting
+
+import org.eclipse.xtext.formatting.impl.AbstractDeclarativeFormatter
+import org.eclipse.xtext.formatting.impl.FormattingConfig
+// import com.google.inject.Inject;
+// import org.opendaylight.nemo.tool.eclipse.plugin.services.EditorGrammarAccess
+
+/**
+ * This class contains custom formatting declarations.
+ * 
+ * See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#formatting
+ * on how and when to use it.
+ * 
+ * Also see {@link org.eclipse.xtext.xtext.XtextFormattingTokenSerializer} as an example
+ */
+class EditorFormatter extends AbstractDeclarativeFormatter {
+
+//     @Inject extension EditorGrammarAccess
+       
+       override protected void configureFormatting(FormattingConfig c) {
+// It's usually a good idea to activate the following three statements.
+// They will add and preserve newlines around comments
+//             c.setLinewrap(0, 1, 2).before(SL_COMMENTRule)
+//             c.setLinewrap(0, 1, 2).before(ML_COMMENTRule)
+//             c.setLinewrap(0, 1, 1).after(ML_COMMENTRule)
+       }
+}