diff dwtx/jface/text/IDocumentInformationMappingExtension.d @ 139:93a6ec48fd28

Regexp throws removal in interfaces
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 02:31:41 +0200
parents c4fb132a086c
children
line wrap: on
line diff
--- a/dwtx/jface/text/IDocumentInformationMappingExtension.d	Sun Aug 24 02:26:23 2008 +0200
+++ b/dwtx/jface/text/IDocumentInformationMappingExtension.d	Sun Aug 24 02:31:41 2008 +0200
@@ -178,7 +178,7 @@
      * @throws BadLocationException if origin region is not a valid region in
      *             the origin document
      */
-    IRegion toExactImageRegion(IRegion originRegion) throws BadLocationException;
+    IRegion toExactImageRegion(IRegion originRegion) ;
 
     /**
      * Returns the segments of the image document that exactly correspond to the
@@ -190,7 +190,7 @@
      * @throws BadLocationException in case the given origin region is not valid
      *             in the original document
      */
-    IRegion[] toExactImageRegions(IRegion originRegion) throws BadLocationException;
+    IRegion[] toExactImageRegions(IRegion originRegion) ;
 
     /**
      * Returns the fragments of the original document that exactly correspond to
@@ -201,7 +201,7 @@
      * @throws BadLocationException in case the given image region is not valid
      *             in the image document
      */
-    IRegion[] toExactOriginRegions(IRegion imageRegion) throws BadLocationException;
+    IRegion[] toExactOriginRegions(IRegion imageRegion) ;
 
     /**
      * Returns the length of the image document.
@@ -221,5 +221,5 @@
      * @throws BadLocationException in case the given origin region is not valid
      *             in the original document
      */
-    IRegion[] getExactCoverage(IRegion originRegion) throws BadLocationException;
+    IRegion[] getExactCoverage(IRegion originRegion) ;
 }