@@ -73,7 +73,7 @@ public class BundleStatusComponentProvider extends ComponentProviderAdapter {
73
73
* @param bundleHost the bundle host
74
74
*/
75
75
public BundleStatusComponentProvider (PluginTool tool , String owner , BundleHost bundleHost ) {
76
- super (tool , "BundleManager " , owner );
76
+ super (tool , "Bundle Manager " , owner );
77
77
setHelpLocation (new HelpLocation ("BundleManager" , "BundleManager" ));
78
78
setTitle ("Bundle Manager" );
79
79
@@ -140,19 +140,21 @@ private void addBundlesAction(String actionName, String description, Icon icon,
140
140
.enabled (false )
141
141
.enabledWhen (context -> bundleStatusTable .getSelectedRows ().length > 0 )
142
142
.onAction (context -> runnable .run ())
143
+ .helpLocation (new HelpLocation ("BundleManager" , actionName ))
143
144
.buildAndInstallLocal (this );
144
145
}
145
146
146
147
private void createActions () {
147
148
Icon icon = Icons .REFRESH_ICON ;
148
- new ActionBuilder ("RefreshBundles " , getOwner ())
149
+ new ActionBuilder ("Refresh Bundles " , getOwner ())
149
150
.popupMenuPath ("Refresh all" )
150
151
.popupMenuIcon (icon )
151
152
.popupMenuGroup (BUNDLE_LIST_GROUP )
152
153
.toolBarIcon (icon )
153
154
.toolBarGroup (BUNDLE_LIST_GROUP )
154
155
.description ("Refresh state by cleaning and reactivating all enabled bundles" )
155
156
.onAction (c -> doRefresh ())
157
+ .helpLocation (new HelpLocation ("BundleManager" , "RefreshBundles" ))
156
158
.buildAndInstallLocal (this );
157
159
158
160
addBundlesAction ("EnableBundles" , "Enable selected bundle(s)" ,
@@ -165,18 +167,19 @@ private void createActions() {
165
167
this ::doCleanBundleBuildCaches );
166
168
167
169
icon = Icons .ADD_ICON ;
168
- new ActionBuilder ("AddBundles " , getOwner ())
170
+ new ActionBuilder ("Add Bundles " , getOwner ())
169
171
.popupMenuPath ("Add bundle(s)" )
170
172
.popupMenuIcon (icon )
171
173
.popupMenuGroup (BUNDLE_LIST_GROUP )
172
174
.toolBarIcon (icon )
173
175
.toolBarGroup (BUNDLE_LIST_GROUP )
174
176
.description ("Display file chooser to add bundles to list" )
175
177
.onAction (c -> showAddBundlesFileChooser ())
178
+ .helpLocation (new HelpLocation ("BundleManager" , "AddBundles" ))
176
179
.buildAndInstallLocal (this );
177
180
178
181
icon = Icons .DELETE_ICON ;
179
- new ActionBuilder ("RemoveBundles " , getOwner ())
182
+ new ActionBuilder ("Remove Bundles " , getOwner ())
180
183
.popupMenuPath ("Remove selected bundle(s)" )
181
184
.popupMenuIcon (icon )
182
185
.popupMenuGroup (BUNDLE_LIST_GROUP )
@@ -185,6 +188,7 @@ private void createActions() {
185
188
.description ("Remove selected bundle(s) from the list" )
186
189
.enabledWhen (c -> bundleStatusTable .getSelectedRows ().length > 0 )
187
190
.onAction (c -> doRemoveBundles ())
191
+ .helpLocation (new HelpLocation ("BundleManager" , "RemoveBundles" ))
188
192
.buildAndInstallLocal (this );
189
193
}
190
194
0 commit comments