Interface ITextRegionAccessDiff
-
- All Superinterfaces:
ITextRegionAccess
- All Known Implementing Classes:
StringBasedTextRegionAccessDiff
public interface ITextRegionAccessDiff extends ITextRegionAccess
AITextRegionAccessthat has been created by modifying another ITextRegionAccess.- Since:
- 2.13
- Noextend:
- This interface is not intended to be extended by clients.
- Noimplement:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITextRegionAccessgetOriginalTextRegionAccess()Retrieve theITextRegionAccessfrom which this ITextRegionAccessDiff has been derived.java.util.List<ITextSegmentDiff>getRegionDifferences()Retrieve all differences between this ITextRegionAccess and the one returned bygetOriginalTextRegionAccess().-
Methods inherited from interface org.eclipse.xtext.formatting2.regionaccess.ITextRegionAccess
getExtensions, getResource, getRewriter, hasSyntaxError, regionForDocument, regionForEObject, regionForLineAtOffset, regionForOffset, regionForRootEObject, textForOffset
-
-
-
-
Method Detail
-
getOriginalTextRegionAccess
ITextRegionAccess getOriginalTextRegionAccess()
Retrieve theITextRegionAccessfrom which this ITextRegionAccessDiff has been derived.
-
getRegionDifferences
java.util.List<ITextSegmentDiff> getRegionDifferences()
Retrieve all differences between this ITextRegionAccess and the one returned bygetOriginalTextRegionAccess().
-
-