Skip to content

Commit 2881517

Browse files
raghucssitiloveeclipse
authored andcommitted
Remove EXPERIMENTAL from all viewer limit based feature java docs.
Limit based items population feature for JFace Tree&Table viewers is exists in eclipse since 4.30 release. So far there are no side effects/new issues have been observed. This feature can be NON-EXPERIMENTAL now. see eclipse-platform#3023
1 parent 1a1d062 commit 2881517

File tree

3 files changed

+5
-37
lines changed

3 files changed

+5
-37
lines changed

bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -973,12 +973,6 @@ int getItemsLimit() {
973973
}
974974

975975
/**
976-
* <p>
977-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
978-
* of a work in progress. There is no guarantee that this API will work or that
979-
* it will remain the same. Please do not use this API without consulting with
980-
* the API development team.
981-
* </p>
982976
* Sets the viewers items limit on direct children at one level.
983977
* <p>
984978
* If the number of direct children will exceed this limit, the viewer will only
@@ -1031,12 +1025,7 @@ protected void handleDoubleSelect(SelectionEvent event) {
10311025
}
10321026

10331027
/**
1034-
* <p>
1035-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
1036-
* of a work in progress. There is no guarantee that this API will work or that
1037-
* it will remain the same. Please do not use this API without consulting with
1038-
* the API development team.
1039-
* </p>
1028+
* Return if it is an instance of ExpandableNode
10401029
*
10411030
* @param element model object representing a special "expandable" node
10421031
* @return return if it is an instance of ExpandableNode

bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/IWorkbenchPreferenceConstants.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -701,13 +701,6 @@ public interface IWorkbenchPreferenceConstants {
701701
String DISPOSE_CLOSED_BROWSER_HOVER_TIMEOUT = "disposeClosedBrowserHoverTimeout"; //$NON-NLS-1$
702702

703703
/**
704-
* <p>
705-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
706-
* of a work in progress. There is no guarantee that this API will work or that
707-
* it will remain the same. Please do not use this API without consulting with
708-
* the API development team.
709-
* </p>
710-
*
711704
* This preference specifies the limit for number of children that can be shown
712705
* per parent element without expanding.
713706
* <p>

bundles/org.eclipse.ui.workbench/eclipseui/org/eclipse/ui/views/WorkbenchViewerSetup.java

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626

2727
/**
2828
* <p>
29-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
30-
* of a work in progress. There is no guarantee that this API will work or that
31-
* it will remain the same. Please do not use this API without consulting with
32-
* the API development team.
29+
* Configure a {@link ColumnViewer} to show limited items per parent before
30+
* showing an ExpandableNode. Limit used is read from preference
31+
* {@link IWorkbenchPreferenceConstants#LARGE_VIEW_LIMIT}. Client must call this
32+
* before {@link Viewer#setInput(Object)}
3333
* </p>
3434
*
3535
* @since 3.130
@@ -60,13 +60,6 @@ public class WorkbenchViewerSetup {
6060
}
6161

6262
/**
63-
* <p>
64-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
65-
* of a work in progress. There is no guarantee that this API will work or that
66-
* it will remain the same. Please do not use this API without consulting with
67-
* the API development team.
68-
* </p>
69-
*
7063
* Returns the current viewer limit set in the {@code General} preference page.
7164
*
7265
* @return {@link IWorkbenchPreferenceConstants#LARGE_VIEW_LIMIT}
@@ -80,13 +73,6 @@ private static IPreferenceStore getPreferenceStore() {
8073
}
8174

8275
/**
83-
* <p>
84-
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
85-
* of a work in progress. There is no guarantee that this API will work or that
86-
* it will remain the same. Please do not use this API without consulting with
87-
* the API development team.
88-
* </p>
89-
*
9076
* Configure a {@link ColumnViewer} to show limited items per parent before
9177
* showing an ExpandableNode. Limit used is read from preference
9278
* {@link IWorkbenchPreferenceConstants#LARGE_VIEW_LIMIT}. Client must call this

0 commit comments

Comments
 (0)