blob: fc029b58d2e0d3ec0905d8ec0e1ce3a9af9e9c4f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Intalio, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are 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:
* David Carver (Intalio) - bug 256339 - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.ui.internal.style;
import org.eclipse.jface.text.Position;
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocumentRegion;
import org.eclipse.wst.sse.ui.ISemanticHighlighting;
import org.eclipse.wst.xml.core.internal.regions.DOMRegionContext;
public class XSLTagNameSemanticHighlighting extends AbstractXSLSemanticHighlighting implements ISemanticHighlighting {
public XSLTagNameSemanticHighlighting() {
}
public String getStylePreferenceKey() {
return IStyleConstantsXSL.TAG_NAME;
}
@Override
public String getEnabledPreferenceKey() {
return "xsl.ui.highlighting.tag.enabled"; //$NON-NLS-1$
}
public Position[] consumes(IStructuredDocumentRegion region) {
return createSemanticPositions(region, DOMRegionContext.XML_TAG_NAME);
}
}