View | Details | Raw Unified | Return to bug 58085 | Differences between
and this patch

Collapse All | Expand All

(-)a/plugin.properties (-1 / +7 lines)
Lines 343-346 command.showIn.targetId.name = Show In Target Id Link Here
343
343
344
installationPage.main.name = About
344
installationPage.main.name = About
345
installationPage.system.name = Configuration
345
installationPage.system.name = Configuration
346
installationPage.plugins.name = Plug-ins
346
installationPage.plugins.name = Plug-ins
347
348
CloseWS_command.description = Close all open projects in the working set
349
CloseWS_command.name = Close
350
WorkingSet_Parameter.name = Working Set
351
OpenWS_command.description = Open all closed projects in the working set
352
OpenWS_command.name = Open
(-)a/plugin.xml (-1 / +42 lines)
Lines 1205-1212 Link Here
1205
               values="org.eclipse.ui.internal.registry.ViewParameterValues">
1205
               values="org.eclipse.ui.internal.registry.ViewParameterValues">
1206
         </commandParameter>
1206
         </commandParameter>
1207
      </command>
1207
      </command>
1208
      <command
1209
            description="%CloseWS_command.description"
1210
            id="org.eclipse.ui.workingSet.close"
1211
            name="%CloseWS_command.name">
1212
         <commandParameter
1213
               id="org.eclipse.ui.workingSet.commandParameter1"
1214
               name="%WorkingSet_Parameter.name"
1215
               optional="false"
1216
               values="org.eclipse.ui.internal.handlers.OpenWorkingSetValues">
1217
         </commandParameter>
1218
      </command>
1219
1220
      <commandParameterType
1221
            id="org.eclipse.ui.workingSet.commandParameterType2"
1222
            type="org.eclipse.ui.internal.handlers.OpenWorkingSetValues">
1223
      </commandParameterType>
1224
1225
      <command
1226
            description="%OpenWS_command.description"
1227
            id="org.eclipse.ui.workingSet.open"
1228
            name="%OpenWS_command.name">
1229
         <commandParameter
1230
               id="org.eclipse.ui.workingSet.commandParameter2"
1231
               name="%WorkingSet_Parameter.name"
1232
               optional="false"
1233
               values="org.eclipse.ui.internal.handlers.CloseWorkingSetValues">
1234
         </commandParameter>
1235
      </command>
1236
1237
      <commandParameterType
1238
            id="org.eclipse.ui.workingSet.commandParameterType2"
1239
            type="org.eclipse.ui.internal.handlers.CloseWorkingSetValues">
1240
      </commandParameterType>
1208
   </extension>
1241
   </extension>
1209
   
1242
1210
   <extension
1243
   <extension
1211
         point="org.eclipse.ui.commandImages">
1244
         point="org.eclipse.ui.commandImages">
1212
      <image
1245
      <image
Lines 2086-2091 Link Here
2086
            </and>
2119
            </and>
2087
         </activeWhen>
2120
         </activeWhen>
2088
      </handler>
2121
      </handler>
2122
      <handler
2123
            class="org.eclipse.ui.internal.handlers.CloseWorkingSetHandler"
2124
            commandId="org.eclipse.ui.workingSet.close">
2125
      </handler>
2126
      <handler
2127
            class="org.eclipse.ui.internal.handlers.OpenWorkingSetHandler"
2128
            commandId="org.eclipse.ui.workingSet.open">
2129
      </handler>
2089
   </extension>
2130
   </extension>
2090
   <extension
2131
   <extension
2091
         point="org.eclipse.core.runtime.adapters">
2132
         point="org.eclipse.core.runtime.adapters">

Return to bug 58085