Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2015-06-04 10:25:52 +0000
committerMarkus Keller2015-06-04 10:25:52 +0000
commit645c60835b748ddc145a206511d6b41fc64e0d56 (patch)
tree8a755a1aad0c25de55557f4d993771010e9b431b
parentf4e2f46918407b5cdd6100848e2c1a88b7a98f9f (diff)
downloadeclipse.platform.text-645c60835b748ddc145a206511d6b41fc64e0d56.tar.gz
eclipse.platform.text-645c60835b748ddc145a206511d6b41fc64e0d56.tar.xz
eclipse.platform.text-645c60835b748ddc145a206511d6b41fc64e0d56.zip
Fix Javadoc reference to IBlockTextSelection#virtual in doc that gets inherited by the implementation class BlockTextSelection
href to file name needs a .html
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/IBlockTextSelection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/IBlockTextSelection.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/IBlockTextSelection.java
index 6d86d590533..657e5473517 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/IBlockTextSelection.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/IBlockTextSelection.java
@@ -39,7 +39,7 @@ public interface IBlockTextSelection extends ITextSelection {
* Returns the column on the {@linkplain ITextSelection#getStartLine() start line} at which the
* selection starts. The returned column is a character count measured from the start of the
* line. It may be larger than the length of the line, in which case it is a <a
- * href="IBlockTextSelection#virtual">virtual</a> offset.
+ * href="IBlockTextSelection.html#virtual">virtual</a> offset.
*
* @return the start column measured from the line start
*/
@@ -48,7 +48,7 @@ public interface IBlockTextSelection extends ITextSelection {
* Returns the exclusive column on the {@linkplain ITextSelection#getEndLine() end line} at which the
* selection ends. The returned column is a character count measured from the start of the
* line. It may be larger than the length of the line, in which case it is a <a
- * href="IBlockTextSelection#virtual">virtual</a> offset.
+ * href="IBlockTextSelection.html#virtual">virtual</a> offset.
*
* @return the end column measured from the line start
*/
@@ -60,7 +60,7 @@ public interface IBlockTextSelection extends ITextSelection {
* {@linkplain ITextSelection#getOffset() offset} and {@link ITextSelection#getLength() length},
* as only the text within the selected columns is returned.
* <p>
- * Any <a href="IBlockTextSelection#virtual">virtual</a> spaces beyond the end of the selected lines are
+ * Any <a href="IBlockTextSelection.html#virtual">virtual</a> spaces beyond the end of the selected lines are
* materialized and returned as text.
* </p>
*

Back to the top