Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2011-09-09 19:02:15 +0000
committerMarkus Keller2011-09-09 19:02:15 +0000
commit884cfa8310848a212e678c90a828c4da7cde5e79 (patch)
tree6ef3f1d9da239627bbb5b6ab8cd4b5e1ecf20872 /org.eclipse.text
parentf972f4b79922e6ad0d20301bd13e6e2e44c4cb02 (diff)
downloadeclipse.platform.text-884cfa8310848a212e678c90a828c4da7cde5e79.tar.gz
eclipse.platform.text-884cfa8310848a212e678c90a828c4da7cde5e79.tar.xz
eclipse.platform.text-884cfa8310848a212e678c90a828c4da7cde5e79.zip
Diffstat (limited to 'org.eclipse.text')
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/link/LinkedPositionGroup.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/link/LinkedPositionGroup.java b/org.eclipse.text/src/org/eclipse/jface/text/link/LinkedPositionGroup.java
index 80c157d562c..aa4bfcc19e1 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/link/LinkedPositionGroup.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/link/LinkedPositionGroup.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -37,9 +37,9 @@ import org.eclipse.jface.text.Region;
* if one gets edited, all other positions in a group are edited the same way.
* All linked positions in a group have the same content.
* <p>
- * Normally, new positions are given a tab stop weight which can be used by
- * clients, e.g. the UI. If no weight is given, a position will not be visited.
- * If no weights are used at all, the first position in a document is taken as
+ * Normally, new positions are given a {@link LinkedPosition#getSequenceNumber() sequence number} which can be used by
+ * clients, e.g. in the UI as tab stop weight. If {@link #NO_STOP} is used as weight, a position will not be visited.
+ * If {@link #NO_STOP} is used for all positions, the first position in a document is taken as
* the only stop as to comply with the behavior of the old linked position
* infrastructure.
* </p>
@@ -52,7 +52,7 @@ import org.eclipse.jface.text.Region;
*/
public class LinkedPositionGroup {
- /** Sequence constant declaring that a position should not be stopped by. */
+ /** {@link LinkedPosition#getSequenceNumber() Sequence number} constant declaring that a position should not be stopped by. */
public static final int NO_STOP= -1;
/* members */

Back to the top