Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipe Mulet2004-05-11 16:46:53 +0000
committerPhilipe Mulet2004-05-11 16:46:53 +0000
commit93b70485a331557e06c4f378f7086f6e4f12616a (patch)
tree2972e36d295c5b9016ea9b83fca1a5f8c0bcf9fc /org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java
parent368e7b2744bb4a520a4dfc9ab8183508aa7c626d (diff)
downloadeclipse.jdt.core-93b70485a331557e06c4f378f7086f6e4f12616a.tar.gz
eclipse.jdt.core-93b70485a331557e06c4f378f7086f6e4f12616a.tar.xz
eclipse.jdt.core-93b70485a331557e06c4f378f7086f6e4f12616a.zip
61706
Diffstat (limited to 'org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java')
-rw-r--r--org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java
index b3081c0ca2..74ba90b968 100644
--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java
+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/ASTNode.java
@@ -255,7 +255,12 @@ public abstract class ASTNode implements BaseTypes, CompilerModifiers, TypeConst
output.append("abstract "); //$NON-NLS-1$
return output;
}
-
+ public int sourceStart() {
+ return this.sourceStart;
+ }
+ public int sourceEnd() {
+ return this.sourceEnd;
+ }
public String toString() {
return print(0, new StringBuffer(30)).toString();

Back to the top