Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2003-08-26 08:59:07 +0000
committerDani Megert2003-08-26 08:59:07 +0000
commitc431d489ecbf9845a6b5a04613b0f19ff8a8a4c8 (patch)
tree05fac3d92ff9a08f79431e093858bcf0d4545a0a
parent76ffabd7032b4f0563f633a560ba0784e0f4de39 (diff)
downloadeclipse.platform.text-20030826.tar.gz
eclipse.platform.text-20030826.tar.xz
eclipse.platform.text-20030826.zip
Renamed getSmap() to getLineMapping()v20030826
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/ITranslator.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ITranslator.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ITranslator.java
index 69aeddcc916..d7fea53136c 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ITranslator.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ITranslator.java
@@ -40,15 +40,13 @@ public interface ITranslator {
String translate(Reader reader, String name) throws IOException;
/**
- * FIXME: needs a better name
- *
* Returns the line mapping information.
*
* @return an int array where the index corresponds to line
* numbers in the translation and the value is a
* source line number
*/
- int[] getSmap();
+ int[] getLineMapping();
/**
* Assigns an optional tag handler factory to this translator.

Back to the top