1 11 package org.eclipse.jface.text; 12 13 22 public interface IDocumentInformationMappingExtension { 23 24 35 IRegion toExactImageRegion(IRegion originRegion) throws BadLocationException; 36 37 47 IRegion[] toExactImageRegions(IRegion originRegion) throws BadLocationException; 48 49 58 IRegion[] toExactOriginRegions(IRegion imageRegion) throws BadLocationException; 59 60 65 int getImageLength(); 66 67 78 IRegion[] getExactCoverage(IRegion originRegion) throws BadLocationException; 79 } 80 | Popular Tags |