Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: af4559b4f1cd90eb0ca41ea6d879ecea23b6c107 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

	  <extension
         point="org.eclipse.ui.popupMenus">
        
         <objectContribution
            objectClass="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink"
            nameFilter="*"
            id="org.eclipse.jst.ws.creation.ui.wizard.serverwizard.java">
         <action
               label="%ACTION_GENERATE_JAVA_SKELETON"
               class="org.eclipse.wst.command.internal.env.ui.widgets.popup.DynamicPopupWizard"
               menubarPath="additions"
               id="org.eclipse.jst.ws.creation.ui.wizard.serverwizard">
         </action>
      </objectContribution>
         
      <objectContribution
            objectClass="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink"
            nameFilter="*"
            id="org.eclipse.jst.ws.internal.consumption.ui.wizard.client.clientwizard">
         <action
               label="%ACTION_GENERATE_JAVA_PROXY"
               class="org.eclipse.wst.command.internal.env.ui.widgets.popup.DynamicPopupWizard"
               menubarPath="additions"
               id="org.eclipse.jst.ws.internal.consumption.ui.wizard.client.clientwizard">
         </action>
      </objectContribution>

      <objectContribution
            objectClass="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink"
            nameFilter="*"
            id="org.eclipse.jst.ws.internal.consumption.ui.action.WSDLFileMenu">
         <action
               label="%POPUP_TEST_WSDL"
               class="org.eclipse.wst.ws.internal.explorer.popup.PopupTestWSDL"
               menubarPath="additions"
               id="org.eclipse.wst.ws.internal.explorer.popup.PopupTestWSDL">
         </action>
      </objectContribution>
    
      </extension>

<extension point="org.eclipse.core.runtime.adapters">
         <factory 
            class="org.eclipse.jst.ws.tests.util.WSCustomAdapterFactory" 
            adaptableType="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink">
            <adapter type="org.eclipse.core.resources.IFile"/>
         </factory>
      </extension>

      <extension point="org.eclipse.core.runtime.adapters">
         <factory 
            class="org.eclipse.jst.ws.tests.util.WSCustomAdapterFactory" 
            adaptableType="org.eclipse.jst.j2ee.webservice.wsdd.ServletLink">
            <adapter type="java.lang.String"/>
         </factory>
      </extension>  
    
</plugin>

Back to the top