Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 0622068f5f01fcd776855dd12ee1de2556d33690 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                               




                                                                                   




                                                                              



                                                                                   




                                                                                    













                                                                                                             
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
    Copyright (c) 2009 Tasktop Technologies 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
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
         Tasktop Technologies - initial API and implementation
 -->
<plugin>
   <extension
         point="org.eclipse.ui.commands">
      <command
            id="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog"
            name="Show Bundle Catalog">
         <commandParameter
               id="org.eclipse.equinox.p2.ui.discovery.commands.DirectoryParameter"
               name="Directory URL"
               optional="true">
         </commandParameter>
         <commandParameter
               id="org.eclipse.equinox.p2.ui.discovery.commands.TagsParameter"
               name="Tags"
               optional="true">
         </commandParameter>
      </command>
      <command
            id="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog"
            name="Show Repository Catalog">
         <commandParameter
               id="org.eclipse.equinox.p2.ui.discovery.commands.RepositoryParameter"
               name="P2 Repository URI"
               optional="true">
         </commandParameter>
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.equinox.internal.p2.ui.discovery.commands.ShowBundleCatalogCommandHandler"
            commandId="org.eclipse.equinox.p2.ui.discovery.commands.ShowBundleCatalog">
      </handler>
      <handler
            class="org.eclipse.equinox.internal.p2.ui.discovery.commands.ShowRepositoryCatalogCommandHandler"
            commandId="org.eclipse.equinox.p2.ui.discovery.commands.ShowRepositoryCatalog">
      </handler>
   </extension>
</plugin>

Back to the top