diff dwtx/jface/text/IDocumentInformationMapping.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/IDocumentInformationMapping.d	Sun Aug 24 02:26:23 2008 +0200
+++ b/dwtx/jface/text/IDocumentInformationMapping.d	Sun Aug 24 02:31:41 2008 +0200
@@ -193,7 +193,7 @@
      * @return the corresponding offset in the original document or <code>-1</code>
      * @throws BadLocationException if <code>imageOffset</code> is not a valid offset in the image document
      */
-    int toOriginOffset(int imageOffset) throws BadLocationException;
+    int toOriginOffset(int imageOffset) ;
 
     /**
      * Returns the minimal region of the original document that completely comprises the given region of the
@@ -203,7 +203,7 @@
      * @return the minimal region of the original document comprising the given region of the image document or <code>null</code>
      * @throws BadLocationException if <code>imageRegion</code> is not a valid region of the image document
      */
-    IRegion toOriginRegion(IRegion imageRegion) throws BadLocationException;
+    IRegion toOriginRegion(IRegion imageRegion) ;
 
     /**
      * Returns the range of lines of the original document that corresponds to the given line of the image document or
@@ -213,7 +213,7 @@
      * @return the corresponding lines of the original document or <code>null</code>
      * @throws BadLocationException if <code>imageLine</code> is not a valid line number in the image document
      */
-    IRegion toOriginLines(int imageLine) throws BadLocationException;
+    IRegion toOriginLines(int imageLine) ;
 
     /**
      * Returns the line of the original document that corresponds to the given line of the image document or
@@ -223,7 +223,7 @@
      * @return the corresponding line of the original document or <code>-1</code>
      * @throws BadLocationException if <code>imageLine</code> is not a valid line number in the image document
      */
-    int toOriginLine(int imageLine) throws BadLocationException;
+    int toOriginLine(int imageLine) ;
 
 
 
@@ -235,7 +235,7 @@
      * @return the corresponding offset in the image document or <code>-1</code>
      * @throws BadLocationException if <code>originOffset</code> is not a valid offset in the original document
      */
-    int toImageOffset(int originOffset) throws BadLocationException;
+    int toImageOffset(int originOffset) ;
 
     /**
      * Returns the minimal region of the image document that completely comprises the given region of the
@@ -245,7 +245,7 @@
      * @return the minimal region of the image document comprising the given region of the original document or <code>null</code>
      * @throws BadLocationException if <code>originRegion</code> is not a valid region of the original document
      */
-    IRegion toImageRegion(IRegion originRegion) throws BadLocationException;
+    IRegion toImageRegion(IRegion originRegion) ;
 
     /**
      * Returns the line of the image document that corresponds to the given line of the original document or
@@ -255,7 +255,7 @@
      * @return the corresponding line of the image document or <code>-1</code>
      * @throws BadLocationException if <code>originLine</code> is not a valid line number in the original document
      */
-    int toImageLine(int originLine) throws BadLocationException;
+    int toImageLine(int originLine) ;
 
     /**
      * Returns the line of the image document whose corresponding line in the original document
@@ -265,5 +265,5 @@
      * @return the line in the image document that corresponds best to the given line in the original document
      * @throws BadLocationException if <code>originLine</code>is not a valid line in the original document
      */
-    int toClosestImageLine(int originLine) throws BadLocationException;
+    int toClosestImageLine(int originLine) ;
 }