1 11 package org.eclipse.jdt.ui.text.java; 12 13 import org.eclipse.jdt.core.dom.ASTNode; 14 import org.eclipse.jdt.core.dom.CompilationUnit; 15 16 17 25 public interface IProblemLocation { 26 27 32 int getOffset(); 33 34 39 int getLength(); 40 41 47 String getMarkerType(); 48 49 56 int getProblemId(); 57 58 63 String [] getProblemArguments(); 64 65 70 boolean isError(); 71 72 78 ASTNode getCoveringNode(CompilationUnit astRoot); 79 80 86 ASTNode getCoveredNode(CompilationUnit astRoot); 87 88 } 89 | Popular Tags |