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-serv26639/css3

Added Files:
	CssPause.java CssPauseAfter.java CssPauseBefore.java 
Log Message:
pause[-before|-after] per css2/css21 and css3 http://www.w3.org/TR/2012/CR-css3-speech-20120320/#pause


--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPause.java	2013/01/04 13:14:03	NONE
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPause.java	2013/01/04 13:14:03	1.1
// $Id: CssPause.java,v 1.1 2013/01/04 13:14:03 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.CssOperator;
import org.w3c.css.values.CssValue;
import org.w3c.css.values.CssValueList;

import java.util.ArrayList;

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

	/**
	 * Create a new CssPause
	 */
	public CssPause() {
		cssPauseAfter = new CssPauseAfter();
		cssPauseBefore = new CssPauseBefore();
		value = initial;
	}

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

		char op;

		cssPauseBefore = new CssPauseBefore(ac, expression, false);
		if (expression.end()) {
			cssPauseAfter = new CssPauseAfter();
			cssPauseAfter.value = cssPauseBefore.value;
			value = cssPauseBefore.value;
		} else {
			op = expression.getOperator();
			if (op != CssOperator.SPACE) {
				throw new InvalidParamException("operator",
						((new Character(op)).toString()), ac);
			}
			cssPauseAfter = new CssPauseAfter(ac, expression, false);
			if (cssPauseBefore.value == inherit || cssPauseAfter.value == inherit) {
				throw new InvalidParamException("value",
						inherit, getPropertyName(), ac);
			}
			ArrayList<CssValue> values = new ArrayList<CssValue>(2);
			values.add(cssPauseBefore.value);
			values.add(cssPauseAfter.value);
			value = new CssValueList(values);
		}
	}

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

--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPauseAfter.java	2013/01/04 13:14:03	NONE
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPauseAfter.java	2013/01/04 13:14:03	1.1
// $Id: CssPauseAfter.java,v 1.1 2013/01/04 13:14:03 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.CssIdent;
import org.w3c.css.values.CssTime;
import org.w3c.css.values.CssTypes;
import org.w3c.css.values.CssValue;

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


	public static final CssIdent[] allowed_values;

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

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

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

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

		CssValue val;
		char op;

		val = expression.getValue();
		op = expression.getOperator();

		switch (val.getType()) {
			case CssTypes.CSS_TIME:
				CssTime t = val.getTime();
				t.checkPositiveness(ac, this);
				value = val;
				break;
			case CssTypes.CSS_IDENT:
				CssIdent id = (CssIdent) val;
				if (inherit.equals(id)) {
					value = inherit;
					break;
				}
				value = getAllowedIdent(id);
				if (value != null) {
					break;
				}
			default:
				throw new InvalidParamException("value",
						val.toString(),
						getPropertyName(), ac);
		}
		expression.next();
    }

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

--- /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPauseBefore.java	2013/01/04 13:14:03	NONE
+++ /sources/public/2002/css-validator/org/w3c/css/properties/css3/CssPauseBefore.java	2013/01/04 13:14:03	1.1
// $Id: CssPauseBefore.java,v 1.1 2013/01/04 13:14:03 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.CssIdent;
import org.w3c.css.values.CssTime;
import org.w3c.css.values.CssTypes;
import org.w3c.css.values.CssValue;

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


	public static final CssIdent[] allowed_values;

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

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

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

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

		CssValue val;
		char op;

		val = expression.getValue();
		op = expression.getOperator();

		switch (val.getType()) {
			case CssTypes.CSS_TIME:
				CssTime t = val.getTime();
				t.checkPositiveness(ac, this);
				value = val;
				break;
			case CssTypes.CSS_IDENT:
				CssIdent id = (CssIdent) val;
				if (inherit.equals(id)) {
					value = inherit;
					break;
				}
				value = getAllowedIdent(id);
				if (value != null) {
					break;
				}
			default:
				throw new InvalidParamException("value",
						val.toString(),
						getPropertyName(), ac);
		}
		expression.next();
    }

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

Received on Friday, 4 January 2013 13:14:04 UTC