blob: 17a1581be3622dc5559fe482f6b3b6fab4256980 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Angelo Zerr 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:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.ui.css.core.dom.properties.css2;
import org.eclipse.e4.ui.css.core.dom.properties.ICSSPropertyHandler;
import org.eclipse.e4.ui.css.core.engine.CSSEngine;
import org.w3c.dom.css.CSSValue;
/**
* CSS2 Text Property Handler.
*
* @see http://www.w3schools.com/css/css_reference.asp#text
*/
public interface ICSSPropertyTextHandler extends ICSSPropertyHandler {
/**
* Sets the color of a text.
*
* @param element
* @param value
* @param pseudo
* @param engine
* @throws Exception
*/
public void applyCSSPropertyColor(Object element, CSSValue value,
String pseudo, CSSEngine engine) throws Exception;
/**
* Controls the letters in an element. Available values are : none
* capitalize uppercase lowercase
*
* @param element
* @param value
* @param pseudo
* @param engine
* @throws Exception
*/
public void applyCSSPropertyTextTransform(Object element, CSSValue value,
String pseudo, CSSEngine engine) throws Exception;
public String retrieveCSSPropertyColor(Object element, String pseudo,
CSSEngine engine) throws Exception;
public String retrieveCSSPropertyTextTransform(Object element,
String pseudo, CSSEngine engine) throws Exception;
}