Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/IDocumentAdapter.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/IDocumentAdapter.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/IDocumentAdapter.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/IDocumentAdapter.java
new file mode 100644
index 00000000000..49c6c6a6f7b
--- /dev/null
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/IDocumentAdapter.java
@@ -0,0 +1,31 @@
+package org.eclipse.jface.text;
+
+/*
+ * (c) Copyright IBM Corp. 2000, 2001.
+ * All Rights Reserved.
+ */
+
+
+import org.eclipse.swt.custom.StyledTextContent;
+
+
+/**
+ * Adapts an <code>IDocument</code> to the <code>StyledTextContent</code> interface.
+ * The document adapter is used by <code>TextViewer</code> to translate document changes
+ * into styled text content changes and vice versa.
+ * Clients may implement this interface and override <code>TextViewer.createDocumentAdapter</code>
+ * if they want to intercept the communication between the viewer's text widget and
+ * the viewer's document.
+ *
+ * @see IDocument
+ * @see StyledTextContent
+ */
+public interface IDocumentAdapter extends StyledTextContent {
+
+ /**
+ * Sets the adapters document.
+ *
+ * @param document the document to be adapted
+ */
+ void setDocument(IDocument document);
+}

Back to the top