blob: a62a8351e875f6440f59956a2c54548a118ff2c3 [file] [log] [blame]
package org.eclipse.dltk.ui.text.folding;
import org.eclipse.dltk.core.IModelElement;
import org.eclipse.dltk.core.ISourceModule;
public interface IElementCommentResolver {
IModelElement getElementByCommentPosition(ISourceModule module,
int commentOffset, int commentLength);
}