Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/code/org.eclipse.fx.code.editor.configuration.text/src/org/eclipse/fx/code/editor/configuration/text/ConfigurationModelProvider.java')
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.configuration.text/src/org/eclipse/fx/code/editor/configuration/text/ConfigurationModelProvider.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.configuration.text/src/org/eclipse/fx/code/editor/configuration/text/ConfigurationModelProvider.java b/bundles/code/org.eclipse.fx.code.editor.configuration.text/src/org/eclipse/fx/code/editor/configuration/text/ConfigurationModelProvider.java
new file mode 100644
index 000000000..6288e3cb2
--- /dev/null
+++ b/bundles/code/org.eclipse.fx.code.editor.configuration.text/src/org/eclipse/fx/code/editor/configuration/text/ConfigurationModelProvider.java
@@ -0,0 +1,10 @@
+package org.eclipse.fx.code.editor.configuration.text;
+
+import org.eclipse.fx.code.editor.Input;
+import org.eclipse.fx.code.editor.configuration.LanguageDef;
+
+@SuppressWarnings("restriction")
+public interface ConfigurationModelProvider {
+ public boolean applies(Input<?> input);
+ public LanguageDef getModel(Input<?> input);
+}

Back to the top