package strutsrewriting; import org.eclipse.jface.text.IDocument; import org.eclipse.text.edits.TextEdit; public interface TextEditProvider { /** * Provides a {@link TextEdit} document. * * @param document * the docuement the {@link TextEdit} object will be applied to * @return the {@link TextEdit} instance */ TextEdit getTextEdit(IDocument document); }