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: 01e11429f5391aed6f90854a94e7f3b7796a70b6 (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
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>

   <extension-point id="extvalidator" name="%_WSDL_EXTENSION_VALIDATOR_NAME" schema="exsd/extvalidator.exsd"/>
   
   <extension-point id="wsdl11validator" name="%WSDL11_VALIDATOR_NAME" schema="exsd/wsdl11validator.exsd"/>
   
	<extension
    	point="org.eclipse.wst.validation.validatorDelegates">
        <delegate
              class="org.eclipse.wst.wsdl.validation.internal.eclipse.Validator"
              name="%_UI_WSDL4J_VALIDATOR_DELEGATE"
              target="org.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator"/>
     </extension>	

   <!-- ====================================================== -->
   <!-- An extension for adding the WSDL validator to the      -->
   <!-- validation framework. 						           -->										   -->
   <!-- ====================================================== -->
   <!--
   <extension
         id="wsdlValidator"
         name="%_UI_WSDL_VALIDATOR"
         point="org.eclipse.wst.validation.validator">
      <validator>
         <filter
               objectClass="org.eclipse.core.resources.IFile"
               caseSensitive="false"
               nameFilter="*.wsdl">
         </filter>
         <helper
               class="org.eclipse.wst.xml.core.internal.validation.core.Helper">
         </helper>
         <run
               async="true"
               class="org.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator"
               enabled="true"
               fullBuild="true"
               incremental="true">
         </run>
         <markerId markerIdValue="org.eclipse.wst.wsdl.validation.validationMarker"/>
      </validator>
   </extension>
   -->
   
   <extension id="wsdl" name="%_UI_WSDL_VALIDATOR" point="org.eclipse.wst.validation.validatorV2">
      <validator
            build="true"
            class="org.eclipse.wst.wsdl.validation.internal.eclipse.WSDLDelegatingValidator"
            manual="true"
            sourceid="org.eclipse.wst.wsdl.ui.internal.validation.DelegatingSourceValidatorForWSDL"
            version="2"
            markerId="org.eclipse.wst.wsdl.validation.validationMarker">
         <include>
            <rules>
               <fileext caseSensitive="false" ext="wsdl"></fileext>
            </rules>
         </include>
      </validator>
   </extension>
   
   <extension
         id="validationMarker"
         name="%_UI_WSDL_VALIDATOR_MARKER"
         point="org.eclipse.core.resources.markers">
      <super type="org.eclipse.wst.validation.problemmarker"/>
      <persistent value="true"/>
   </extension>
</plugin>

Back to the top