Skip to content

Commit 29f71b0

Browse files
committed
Fix @since tags to 10.2 for auto-expand level related APIs
Signed-off-by: Bernd Hufmann <[email protected]>
1 parent d487cf2 commit 29f71b0

File tree

1 file changed

+4
-4
lines changed
  • tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/model/tree

1 file changed

+4
-4
lines changed

tmf/org.eclipse.tracecompass.tmf.core/src/org/eclipse/tracecompass/tmf/core/model/tree/TmfTreeModel.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class TmfTreeModel<T extends ITmfTreeDataModel> {
3535
/**
3636
* Expand level to indicate that all tree levels are expanded. (default)
3737
*
38-
* @since 10.1
38+
* @since 10.2
3939
*/
4040
public static final int ALL_LEVELS = -1;
4141

@@ -138,7 +138,7 @@ public List<T> getEntries() {
138138
* @return non-negative level, or <code>ALL_LEVELS</code> if all levels of
139139
* the tree are expanded automatically
140140
* @see #setAutoExpandLevel
141-
* @since 10.1
141+
* @since 10.2
142142
*/
143143
public int getAutoExpandLevel() {
144144
return fAutoExpandLevel;
@@ -156,7 +156,7 @@ public int getAutoExpandLevel() {
156156
*
157157
* @param autoExpandLevel
158158
* The auto expand level to set
159-
* @since 10.1
159+
* @since 10.2
160160
*/
161161
public void setAutoExpandLevel(int autoExpandLevel) {
162162
this.fAutoExpandLevel = autoExpandLevel;
@@ -227,7 +227,7 @@ public Builder<T> setScope(String scope) {
227227
* expand level of the tree model
228228
* @return this {@link Builder} object
229229
* @see TmfTreeModel#setAutoExpandLevel(int)
230-
* @since 10.1
230+
* @since 10.2
231231
*/
232232
public Builder<T> setAutoExpandLevel(int autoExpandLevel) {
233233
fAutoExpandLevel = autoExpandLevel;

0 commit comments

Comments
 (0)