Skip to main content
summaryrefslogtreecommitdiffstats
blob: 05c6432387417c02fb36796fbcd8b8c319675397 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
   <extension-point id="faceletValidator" name="%extension-point.name" schema="schema/faceletValidator.exsd"/>
   <extension
         point="org.eclipse.wst.sse.ui.editorConfiguration">
      <sourceViewerConfiguration
            class="org.eclipse.wst.html.ui.StructuredTextViewerConfigurationHTML"
            target="org.eclipse.wst.html.core.htmlsource">
      </sourceViewerConfiguration>
      <provisionalConfiguration
            class="org.eclipse.jst.jsf.facelet.ui.internal.contentassist.XHTMLContentAssistProcessor"
            target="org.eclipse.wst.html.HTML_DEFAULT"
            type="contentassistprocessor">
      </provisionalConfiguration>
     <provisionalConfiguration 
        type="contentassistprocessor" 
        class="org.eclipse.jst.jsf.facelet.ui.internal.contentassist.CompositeAttributeAssistProcessor" 
        target="org.eclipse.wst.html.HTML_DEFAULT" />
      <documentationTextHover
          class="org.eclipse.jst.jsf.facelet.ui.internal.hover.FaceletHover"
          target="org.eclipse.wst.html.HTML_DEFAULT">
    </documentationTextHover>
    </extension>

    <extension point="org.eclipse.ui.workbench.texteditor.hyperlinkDetectors">
       <hyperlinkDetector
             class="org.eclipse.jst.jsf.facelet.ui.internal.htmleditor.FaceletELHyperlinkDetector"
             id="org.eclipse.jst.jsf.ui.elhyperlinkdetector"
             name="%EL_Hyperlinkdetector_name"
             targetId="org.eclipse.wst.html.core.htmlsource">
       </hyperlinkDetector>
    </extension>

   <extension
        id="FaceletValidationMarker"
        name="%FaceletValidatorMarker"
        point="org.eclipse.core.resources.markers">
      <super
            type="org.eclipse.wst.validation.problemmarker">
      </super>
    </extension>

   <extension
        point="org.eclipse.wst.validation.validatorV2"
        id="FaceletHTMLValidator"
        name="%FaceletHTMLValidator_name">
        <validator
            build="true"
            class="org.eclipse.jst.jsf.facelet.ui.internal.validation.HTMLValidator"
            manual="true"
            markerId="org.eclipse.jst.jsf.facelet.ui.FaceletValidationMarker"
            version="1">

         <include>
            <rules>
               <projectNature
                     id="org.eclipse.wst.common.modulecore.ModuleCoreNature">
               </projectNature>
            </rules>
         </include>
         <include>
            <rules>
               <projectNature
                     id="org.eclipse.jdt.core.javanature">
               </projectNature>
            </rules>
         </include>

         <include>
            <rules>
               <facet
                     id="jst.java">
               </facet>
            </rules>
         </include>
         <include>
            <rules>
               <facet
                     id="jst.web">
               </facet>
            </rules>
         </include>
         <include>
            <rules>
               <facet
                     id="jst.jsf" version="2.0">
               </facet>
               <facet
                     id="jst.jsf"
                     version="2.1">
               </facet>
               <facet
                     id="jst.jsf"
                     version="2.2">
               </facet>
            </rules>
         </include>
         <include>
            <rules>
               <contentType
                     exactMatch="false"
                     id="jsf.facelet">
               </contentType>
               <contentType
                     exactMatch="false"
                     id="jsf.facelet.composite">
               </contentType>
            </rules>
         </include>
         <group
               id="org.eclipse.wst.sse.core.structuredModelGroup">
         </group>

        </validator>
        </extension>
        
       <!--<extension
        point="org.eclipse.wst.validation.validator"
        id="FaceletTaglibValidator"
        name="%FaceletTaglibValidator">
        <validator>
            <projectNature id="org.eclipse.wst.common.modulecore.ModuleCoreNature" />
            <projectNature id="org.eclipse.jdt.core.javanature" />
            <filter
                objectClass="org.eclipse.core.resources.IFile"
                nameFilter="faces-config.xml">
            </filter>
            <markerId
               markerIdValue="JSPSemanticsValidatorMarker">
            </markerId>
            <helper 
                class="org.eclipse.wst.validation.internal.operations.WorkbenchContext">
            </helper>
            <run
                class="org.eclipse.jst.jsf.validation.internal.appconfig.AppConfigValidator"
                incremental="true"
                fullBuild="true"
            />
        </validator>
    </extension>-->
   <extension
         point="org.eclipse.ui.editors.templates">
      <include
            file="templates/templates.xml"
            translations="$nl$/templates/templates.properties">
      </include>
   </extension>
   <extension
         point="org.eclipse.wst.xml.core.modelQueryExtensions">
      <modelQueryExtension
            class="org.eclipse.jst.jsf.facelet.ui.internal.contentassist.MyModelQueryExtension"
            contentType="org.eclipse.wst.html.core.htmlsource">
      </modelQueryExtension>
   </extension>
   <extension
         point="org.eclipse.jst.jsf.facelet.ui.faceletValidator">
      <validationStrategy
            class="org.eclipse.jst.jsf.facelet.ui.internal.validation.DefaultFaceletValidationStrategy"
            id="org.eclipse.jst.jsf.facelet.ui.defaultValidationStrategy">
      </validationStrategy>
   </extension>
</plugin>

Back to the top