[jbosstools-commits] JBoss Tools SVN: r17755 - in trunk/jst/plugins/org.jboss.tools.jst.text.ext: src/org/jboss/tools/jst/text/ext/hyperlink/jsp and 1 other directory.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Sep 25 11:59:22 EDT 2009


Author: scabanovich
Date: 2009-09-25 11:59:22 -0400 (Fri, 25 Sep 2009)
New Revision: 17755

Modified:
   trunk/jst/plugins/org.jboss.tools.jst.text.ext/plugin.xml
   trunk/jst/plugins/org.jboss.tools.jst.text.ext/src/org/jboss/tools/jst/text/ext/hyperlink/jsp/JSPCSSClassHyperlinkPartitioner.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4950


Modified: trunk/jst/plugins/org.jboss.tools.jst.text.ext/plugin.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.text.ext/plugin.xml	2009-09-25 15:57:36 UTC (rev 17754)
+++ trunk/jst/plugins/org.jboss.tools.jst.text.ext/plugin.xml	2009-09-25 15:59:22 UTC (rev 17755)
@@ -2,4 +2,391 @@
 <?eclipse version="3.0"?>
 <plugin>
 
+	<extension 
+		point="org.jboss.tools.common.text.ext.hyperlinkPartitioner"
+		id="org.jboss.tools.common.text.ext.hyperlinkPartitioner"
+		name="org.jboss.tools.common.text.ext.hyperlinkPartitioner">
+		
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPRootHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPRootHyperlinkPartitioner">
+			<contentType id="org.eclipse.jst.jsp.core.jspsource">
+				<partitionType id="org.eclipse.jst.jsp.JSP_DIRECTIVE" />
+				<partitionType id="org.eclipse.wst.html.HTML_DEFAULT" />
+			</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.eclipse.wst.html.HTML_DEFAULT" />
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner 
+         	id="org.jboss.tools.common.text.ext.hyperlink.CSSClassHyperlinkPartitioner"
+         	class="org.jboss.tools.jst.text.ext.hyperlink.CSSClassHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         		</partitionType>
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<!--Maksim Areshkau, partitioner for *.taglib.xml files -->
+		<hyperlinkPartitioner
+        class="org.jboss.tools.jst.text.ext.hyperlink.TaglibDefinitionFilesHyperlinkPartitioner"
+        id="org.jboss.tools.common.text.ext.hyperlink.TaglibDefinitionFilesHyperlinkPartitioner">
+          	<contentType id="org.jboss.tools.common.model.ui.xml">
+          		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
+         			<axis path="/facelet-taglib/tag/source">
+	                 </axis> 
+	                <axis path="/facelet-taglib/function/function-class">
+                   	 </axis> 
+                     <axis path="/facelet-taglib/tag/component/handler-class">
+                     </axis> 
+                     <axis path="/facelet-taglib/library-class">
+                     </axis>  			
+          		</partitionType>
+          	</contentType>
+		</hyperlinkPartitioner>
+		<!--End of partiotioner for *.taglib.xml files -->
+		
+		<!-- Common HTML and/or JSP hyperlink partitioners --> 
+		<hyperlinkPartitioner 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPTaglibHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPTaglibHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.jsp.JSP_ROOT"/>
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:directive.taglib/uri" />
+         			<axis path="*/jsp:directive.taglib/prefix" />
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPTagAttributeHyperlinkPartitioner" 
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPTagAttributeHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:attribute/name/"/>
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPTextHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPTextHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.jsp.JSP_ROOT">
+         			<axis path="*/title/" ignoreCase="true"/>
+         			<axis path="*/h1/" ignoreCase="true"/>
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPElementHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.jsp.JSP_ROOT" />
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.jsp.JSP_ROOT" />
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementNameHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPElementNameHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT"/>
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT"/>
+         	</contentType>
+		</hyperlinkPartitioner>
+         
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementAttributeValueHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPElementAttributeValueHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT" />
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT" />
+         	</contentType>
+		</hyperlinkPartitioner> 
+
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPXmlNsHyperlinkPartitioner" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPXmlNsHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE"/>
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE"/>
+         	</contentType>
+		</hyperlinkPartitioner> 
+
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPBeanGetPropertyHyperlinkPartitioner" 
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPBeanGetPropertyHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:getProperty/property/" />
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner> 
+
+		<hyperlinkPartitioner
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPBeanSetPropertyHyperlinkPartitioner" 
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPBeanSetPropertyHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:setProperty/property/" />
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner> 
+
+		<hyperlinkPartitioner 
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPForBeanIdHyperlinkPartitioner"
+         	class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPForBeanIdHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:setProperty/name/" />
+         			<axis path="*/jsp:getProperty/name/" />
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPClassHyperlinkPartitioner"
+         	class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPClassHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/jsp:directive.page/import/" />
+         			<axis path="*/jsp:useBean/class/" />
+         			<axis path="*/jsp:useBean/type/" />
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+		
+		<hyperlinkPartitioner
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPStylesheetRelLinkHyperlinkPartitioner"
+         	class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPStylesheetRelLinkHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/link/*" ignoreCase="true"/>
+         		</partitionType>
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT">
+         			<axis path="*/link/*" ignoreCase="true"/>
+         		</partitionType>
+         		<partitionType id="com.ibm.sse.STYLE">
+         			<!--axis path="*/style/" /-->
+         		</partitionType>
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/link/*" ignoreCase="true"/>
+         		</partitionType>
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT">
+         			<axis path="*/link/*" ignoreCase="true"/>
+         		</partitionType>
+         		<partitionType id="com.ibm.sse.STYLE">
+         			<!--axis path="*/style/" /-->
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+
+		<hyperlinkPartitioner
+         	id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPLinkHyperlinkPartitioner"
+         	class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPLinkHyperlinkPartitioner">
+         	<contentType id="org.eclipse.jst.jsp.core.jspsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/a/href/" ignoreCase="true"/>
+         			<axis path="*/jsp:directive.include/file/" />
+         			<axis path="*/jsp:directive.page/errorPage/" />
+         			<axis path="*/jsp:include/page/" />
+         			<axis path="*/jsp:forward/page/" />
+         			<axis path="*/jsp:plugin/iepluginurl/" />
+         			<axis path="*/jsp:plugin/nspluginurl/" />
+         		</partitionType>
+         	</contentType>
+         	<contentType id="org.eclipse.wst.html.core.htmlsource">
+         		<partitionType id="org.jboss.tools.common.text.ext.xml.XML_ATTRIBUTE_VALUE">
+         			<axis path="*/a/href/" ignoreCase="true"/>
+         		</partitionType>
+         	</contentType>
+		</hyperlinkPartitioner>
+		<!-- End of Common HTML and/or JSP hyperlink partitioners -->
+
+	</extension>
+	
+	<extension 
+		point="org.jboss.tools.common.text.ext.hyperlink"
+		id="org.jboss.tools.common.text.ext.hyperlink"
+		name="org.jboss.tools.common.text.ext.hyperlink">
+		
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.CSSClassHyperlink" 
+			id="org.jboss.tools.common.text.ext.hyperlink.CSSClassHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.CSS_CLASS" />
+			</contenttypeidentifier>
+   			<contenttypeidentifier id="org.eclipse.wst.html.core.htmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.CSS_CLASS" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.FilterNameHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.FilterNameHyperlink">
+			<contenttypeidentifier id="org.eclipse.wst.xml.core.xmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_FILTER_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.core.runtime.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_FILTER_NAME" />
+			</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.j2ee.webDD">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_FILTER_NAME" />
+        	</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.jee.ee5webDD">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_FILTER_NAME" />
+      	</contenttypeidentifier>
+			<contenttypeidentifier id="org.jboss.tools.common.model.ui.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_FILTER_NAME" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.JSPStylesheetRelLinkHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.JSPStylesheetRelLinkHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_STYLESHEET_REL_LINK" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.wst.html.core.htmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_STYLESHEET_REL_LINK" />
+			</contenttypeidentifier>
+		</hyperlink>
+		
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.RoleNameHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.RoleNameHyperlink">
+			<contenttypeidentifier id="org.eclipse.wst.xml.core.xmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ROLE_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.core.runtime.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ROLE_NAME" />
+			</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.j2ee.webDD">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ROLE_NAME" />
+        	</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.jee.ee5webDD">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ROLE_NAME" />
+      	</contenttypeidentifier>
+			<contenttypeidentifier id="org.jboss.tools.common.model.ui.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ROLE_NAME" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+	<!-- Web.inf File -->
+ 
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.ServletNameHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.ServletNameHyperlink">
+			<contenttypeidentifier id="org.eclipse.wst.xml.core.xmlsource">
+            	<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_SERVLET_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.core.runtime.xml">
+            	<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_SERVLET_NAME" />
+			</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.j2ee.webDD">
+            	<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_SERVLET_NAME" />
+        	</contenttypeidentifier>
+        	<contenttypeidentifier id="org.eclipse.jst.jee.ee5webDD">
+            	<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_SERVLET_NAME" />
+      	</contenttypeidentifier>
+			<contenttypeidentifier id="org.jboss.tools.common.model.ui.xml">
+            	<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_SERVLET_NAME" />
+			</contenttypeidentifier>
+		</hyperlink>
+	<!-- Web.inf File -->
+
+	<!-- TLD Files -->
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.TLDAttributeNameHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.TLDAttributeNameHyperlink">
+			<contenttypeidentifier id="org.eclipse.wst.xml.core.xmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.tld.TLD_ATTRIBUTE_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.tldsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.tld.TLD_ATTRIBUTE_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.core.runtime.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.tld.TLD_ATTRIBUTE_NAME" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.jboss.tools.common.model.ui.xml">
+				<partitiontype id="org.jboss.tools.common.text.ext.tld.TLD_ATTRIBUTE_NAME" />
+			</contenttypeidentifier>
+		</hyperlink>
+	<!-- TLD Files -->
+
+<!-- JSP -->
+<!-- add an open on action for jsp bean partitions -->
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementNameHyperlink" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPElementNameHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.xml.XML_ELEMENT_NAME" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPTaglibHyperlink" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPTaglibHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_TAGLIB" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+      		class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPXmlNsHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPXmlNsHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_XMLNS" />
+			</contenttypeidentifier>
+			<contenttypeidentifier id="org.eclipse.wst.html.core.htmlsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_XMLNS" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPForBeanIdHyperlink" 
+			id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPForBeanIdHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_FOR_BEAN_ID" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPBeanGetPropertyHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPBeanGetPropertyHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+            	<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_BEAN_GET_PROPERTY" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+		<hyperlink 
+			class="org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPBeanSetPropertyHyperlink" 
+      		id="org.jboss.tools.common.text.ext.hyperlink.jsp.JSPBeanSetPropertyHyperlink">
+			<contenttypeidentifier id="org.eclipse.jst.jsp.core.jspsource">
+				<partitiontype id="org.jboss.tools.common.text.ext.jsp.JSP_BEAN_SET_PROPERTY" />
+			</contenttypeidentifier>
+		</hyperlink>
+
+<!-- JSP -->
+
+	</extension>
+
 </plugin>

Modified: trunk/jst/plugins/org.jboss.tools.jst.text.ext/src/org/jboss/tools/jst/text/ext/hyperlink/jsp/JSPCSSClassHyperlinkPartitioner.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.text.ext/src/org/jboss/tools/jst/text/ext/hyperlink/jsp/JSPCSSClassHyperlinkPartitioner.java	2009-09-25 15:57:36 UTC (rev 17754)
+++ trunk/jst/plugins/org.jboss.tools.jst.text.ext/src/org/jboss/tools/jst/text/ext/hyperlink/jsp/JSPCSSClassHyperlinkPartitioner.java	2009-09-25 15:59:22 UTC (rev 17755)
@@ -23,7 +23,7 @@
 import org.jboss.tools.common.text.ext.util.Utils;
 
 /**
- *  * @deprecated see org.jboss.tools.common.text.ext.hyperlink.CSSClassHyperlinkPartitioner
+ *  * @deprecated see org.jboss.tools.jst.text.ext.hyperlink.CSSClassHyperlinkPartitioner
  * @author Jeremy
  */
 public class JSPCSSClassHyperlinkPartitioner extends AbstractHyperlinkPartitioner /*implements IHyperlinkPartitionRecognizer */{



More information about the jbosstools-commits mailing list