CVS 2002/css-validator/org/w3c/css/properties/css3

Update of /sources/public/2002/css-validator/org/w3c/css/properties/css3
In directory roscoe:/tmp/cvs-serv8423/css3

Modified Files:
	Css3Style.java 
Added Files:
	CssVoiceRange.java 
Log Message:
voice-range per http://www.w3.org/TR/2012/CR-css3-speech-20120320/#voice-range

--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/Css3Style.java	2013/01/11 10:47:26	1.152
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/Css3Style.java	2013/01/11 10:51:20	1.153
@@ -1,6 +1,6 @@
 //
 
-// $Id: Css3Style.java,v 1.152 2013/01/11 10:47:26 ylafon Exp $
+// $Id: Css3Style.java,v 1.153 2013/01/11 10:51:20 ylafon Exp $
 // From Sijtsche de Jong (sy.de.jong@let.rug.nl)
 //
 // COPYRIGHT (c) 1995-2000 World Wide Web Consortium, (MIT, INRIA, Keio University)
@@ -117,6 +117,7 @@
 import org.w3c.css.properties.css.CssVoiceBalance;
 import org.w3c.css.properties.css.CssVoiceDuration;
 import org.w3c.css.properties.css.CssVoicePitch;
+import org.w3c.css.properties.css.CssVoiceRange;
 import org.w3c.css.properties.css.CssVoiceRate;
 import org.w3c.css.properties.css.CssVoiceStress;
 import org.w3c.css.properties.css.CssVoiceVolume;
@@ -138,6 +139,7 @@
 	public CssRest cssRest;
 	public CssSpeakAs cssSpeakAs;
 	public CssVoicePitch cssVoicePitch;
+	public CssVoiceRange cssVoiceRange;
 
 	CssRubyPosition cssRubyPosition;
 	CssRubyAlign cssRubyAlign;
@@ -1560,6 +1562,13 @@
 		}
 		return cssVoicePitch;
 	}
+
+	public final CssVoiceRange getVoiceRange() {
+		if (cssVoiceRange == null) {
+			cssVoiceRange = (CssVoiceRange) style.CascadingOrder(new CssVoiceRange(), style, selector);
+		}
+		return cssVoiceRange;
+	}
 	///
 
 	/**

--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssVoiceRange.java	2013/01/11 10:51:20	NONE
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssVoiceRange.java	2013/01/11 10:51:20	1.1
// $Id: CssVoiceRange.java,v 1.1 2013/01/11 10:51:20 ylafon Exp $
// Author: Yves Lafon <ylafon@w3.org>
//
// (c) COPYRIGHT MIT, ERCIM and Keio University, 2013.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css3;

import org.w3c.css.util.ApplContext;
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
import org.w3c.css.values.CssFrequency;
import org.w3c.css.values.CssIdent;
import org.w3c.css.values.CssTypes;
import org.w3c.css.values.CssValue;
import org.w3c.css.values.CssValueList;

import java.util.ArrayList;

import static org.w3c.css.values.CssOperator.SPACE;

/**
 * @spec http://www.w3.org/TR/2012/CR-css3-speech-20120320/#voice-range
 */
public class CssVoiceRange extends org.w3c.css.properties.css.CssVoiceRange {

	public static final CssIdent[] allowed_values;
	public static final CssIdent absolute;

	static {
		String[] _allowed_values = {"x-low", "low", "medium", "high", "x-high"};
		int i = 0;
		allowed_values = new CssIdent[_allowed_values.length];
		for (String s : _allowed_values) {
			allowed_values[i++] = CssIdent.getIdent(s);
		}
		absolute = CssIdent.getIdent("absolute");
	}

	public static final CssIdent getAllowedIdent(CssIdent ident) {
		for (CssIdent id : allowed_values) {
			if (id.equals(ident)) {
				return id;
			}
		}
		return null;
	}

	/**
	 * Create a new CssVoiceRange
	 */
	public CssVoiceRange() {
		value = initial;
	}

	/**
	 * Creates a new CssVoiceRange
	 *
	 * @param expression The expression for this property
	 * @throws org.w3c.css.util.InvalidParamException
	 *          Expressions are incorrect
	 */
	public CssVoiceRange(ApplContext ac, CssExpression expression, boolean check)
			throws InvalidParamException {
		if (check && expression.getCount() > 2) {
			throw new InvalidParamException("unrecognize", ac);
		}
		setByUser();

		CssValue val;
		char op;
		CssValue identVal = null;
		CssValue numVal = null;
		while (!expression.end()) {
			val = expression.getValue();
			op = expression.getOperator();

			switch (val.getType()) {
				case CssTypes.CSS_FREQUENCY:
				case CssTypes.CSS_SEMITONE:
				case CssTypes.CSS_PERCENTAGE:
					if (numVal != null) {
						throw new InvalidParamException("value", val,
								getPropertyName(), ac);
					}
					numVal = val;
					value = val;
					break;
				case CssTypes.CSS_IDENT:
					if (inherit.equals(val)) {
						if (expression.getCount() > 1) {
							throw new InvalidParamException("value", inherit,
									getPropertyName(), ac);
						}
						value = inherit;
						break;
					}
					if (identVal == null) {
						CssIdent id = (CssIdent) val;
						if (absolute.equals(id)) {
							identVal = absolute;
							value = absolute;
							break;
						}
						identVal = getAllowedIdent(id);
						if (identVal != null) {
							value = val;
							break;
						}
						// unrecognized... let it fail
					}
				default:
					throw new InvalidParamException("value", val,
							getPropertyName(), ac);
			}
			if (op != SPACE) {
				throw new InvalidParamException("operator",
						((new Character(op)).toString()), ac);
			}
			expression.next();
		}
		if (expression.getCount() > 1) {
			if (identVal == absolute) {
				if (numVal.getType() != CssTypes.CSS_FREQUENCY) {
					throw new InvalidParamException("value", expression.toStringFromStart(),
							getPropertyName(), ac);
				}
				CssFrequency frequency = numVal.getFrequency();
				frequency.warnPositiveness(ac, this);
			}
			ArrayList<CssValue> values = new ArrayList<CssValue>(2);
			values.add(numVal);
			values.add(identVal);
			value = new CssValueList(values);
		}
	}

	public CssVoiceRange(ApplContext ac, CssExpression expression)
			throws InvalidParamException {
		this(ac, expression, false);
	}
}

Received on Friday, 11 January 2013 10:51:23 UTC