Author: vrubezhny
Date: 2011-08-02 07:44:22 -0400 (Tue, 02 Aug 2011)
New Revision: 33450
Removed:
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithExprHyperlinkPartitioner.java
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithNoExprHyperlinkPartitioner.java
Log:
JBIDE-9288
Open On for bundle messages doesn't work for CDI projects with International Module
enabled
Deprecated hyperlink classes were removed
Deleted:
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithExprHyperlinkPartitioner.java
===================================================================
---
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithExprHyperlinkPartitioner.java 2011-08-02
11:43:54 UTC (rev 33449)
+++
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithExprHyperlinkPartitioner.java 2011-08-02
11:44:22 UTC (rev 33450)
@@ -1,36 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.jsf.text.ext.facelets.hyperlink;
-
-import org.eclipse.jface.text.IDocument;
-
-import org.jboss.tools.common.text.ext.hyperlink.IHyperlinkRegion;
-import org.jboss.tools.jsf.text.ext.hyperlink.JSPExprHyperlinkPartitioner;
-import
org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementAttributeValueHyperlinkPartitioner;
-
-public class FaceletsAttributeValueWithExprHyperlinkPartitioner extends
JSPElementAttributeValueHyperlinkPartitioner {
- public static final String FACELETS_ATTRIBUTE_VALUE_WITH_EXPR_PARTITION =
"org.jboss.tools.common.text.ext.jsp.FACELETS_ATTRIBUTE_VALUE_WITH_EXPR";
//$NON-NLS-1$
-
- protected String getPartitionType() {
- return FACELETS_ATTRIBUTE_VALUE_WITH_EXPR_PARTITION;
- }
-
- public boolean excludes(String partitionType, IDocument document, IHyperlinkRegion
superRegion) {
- if (JSPExprHyperlinkPartitioner.JSP_EXPRESSION_PARTITION.equals(partitionType))
- return true;
- return false;
- }
-
- public String getExclusionPartitionType() {
- return null;
- }
-
-}
Deleted:
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithNoExprHyperlinkPartitioner.java
===================================================================
---
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithNoExprHyperlinkPartitioner.java 2011-08-02
11:43:54 UTC (rev 33449)
+++
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/src/org/jboss/tools/jsf/text/ext/facelets/hyperlink/FaceletsAttributeValueWithNoExprHyperlinkPartitioner.java 2011-08-02
11:44:22 UTC (rev 33450)
@@ -1,38 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is 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:
- * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-package org.jboss.tools.jsf.text.ext.facelets.hyperlink;
-
-
-import org.eclipse.jface.text.IDocument;
-
-import org.jboss.tools.common.text.ext.hyperlink.IHyperlinkRegion;
-import org.jboss.tools.jsf.text.ext.hyperlink.JSPExprHyperlinkPartitioner;
-import
org.jboss.tools.jst.text.ext.hyperlink.jsp.JSPElementAttributeValueHyperlinkPartitioner;
-
-public class FaceletsAttributeValueWithNoExprHyperlinkPartitioner extends
JSPElementAttributeValueHyperlinkPartitioner {
- public static final String FACELETS_ATTRIBUTE_VALUE_WITH_NO_EXPR_PARTITION =
"org.jboss.tools.common.text.ext.jsp.FACELETS_ATTRIBUTE_VALUE_WITH_NO_EXPR";
//$NON-NLS-1$
-
- protected String getPartitionType() {
- return FACELETS_ATTRIBUTE_VALUE_WITH_NO_EXPR_PARTITION;
- }
-
- public boolean excludes(String partitionType, IDocument document, IHyperlinkRegion
superRegion) {
- if (JSPExprHyperlinkPartitioner.JSP_EXPRESSION_PARTITION.equals(partitionType))
- return true;
- return false;
- }
-
- public String getExclusionPartitionType() {
- return null;
- }
-
-
-}