2002/css-validator/org/w3c/css/properties/css2 CssUnicodeBidi.java,NONE,1.1 Css2Style.java,1.19,1.20

Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2
In directory hutz:/tmp/cvs-serv31748/css2

Modified Files:
	Css2Style.java 
Added Files:
	CssUnicodeBidi.java 
Log Message:
unicode-bidi per css2/21/3/atsc

Index: Css2Style.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/Css2Style.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Css2Style.java	5 Nov 2012 13:43:19 -0000	1.19
+++ Css2Style.java	5 Nov 2012 14:25:59 -0000	1.20
@@ -26,6 +26,7 @@
 import org.w3c.css.properties.css.CssRight;
 import org.w3c.css.properties.css.CssTextShadow;
 import org.w3c.css.properties.css.CssTop;
+import org.w3c.css.properties.css.CssUnicodeBidi;
 import org.w3c.css.util.ApplContext;
 import org.w3c.css.util.Warning;
 import org.w3c.css.util.Warnings;
@@ -75,7 +76,7 @@
 	public CssClip cssClip;
 	public CssMarkerOffset cssMarkerOffset;
 	public CssDirection cssDirection;
-
+	public CssUnicodeBidi cssUnicodeBidi;
 
 	/**
 	 * Get the azimuth
@@ -335,6 +336,7 @@
 		}
 		return cssClip;
 	}
+
 	/**
 	 * Get the direction property
 	 */
@@ -348,6 +350,18 @@
 	}
 
 	/**
+	 * Get the unicode-bidi property
+	 */
+	public final CssUnicodeBidi getUnicodeBidi() {
+		if (cssUnicodeBidi == null) {
+			cssUnicodeBidi =
+					(CssUnicodeBidi) style.CascadingOrder(new CssUnicodeBidi(),
+							style, selector);
+		}
+		return cssUnicodeBidi;
+	}
+
+	/**
 	 * Find conflicts in this Style
 	 *
 	 * @param warnings     For warnings reports.

--- NEW FILE: CssUnicodeBidi.java ---
// $Id: CssUnicodeBidi.java,v 1.1 2012/11/05 14:26:00 ylafon Exp $
// Author: Yves Lafon <ylafon@w3.org>
//
// (c) COPYRIGHT MIT, ERCIM and Keio University, 2012.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css2;

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.CssTypes;
import org.w3c.css.values.CssValue;

/**
 * @spec http://www.w3.org/TR/2008/REC-CSS2-20080411/visuren.html#propdef-unicode-bidi
 */
public class CssUnicodeBidi extends org.w3c.css.properties.css.CssUnicodeBidi {

	public static final CssIdent[] allowed_values;

	static {
		String[] _allowed_values = {"normal", "embed", "bidi-override"};
		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 CssUnicodeBidi
	 */
	public CssUnicodeBidi() {
	}

	/**
	 * Creates a new CssUnicodeBidi
	 *
	 * @param expression The expression for this property
	 * @throws org.w3c.css.util.InvalidParamException
	 *          Expressions are incorrect
	 */
	public CssUnicodeBidi(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();

		if (val.getType() != CssTypes.CSS_IDENT) {
			throw new InvalidParamException("value", val,
					getPropertyName(), ac);
		}
		CssIdent id = (CssIdent) val;
		if (inherit.equals(id)) {
			value = inherit;
		} else {
			value = getAllowedIdent(id);
			if (value == null) {
				throw new InvalidParamException("value",
						val.toString(),
						getPropertyName(), ac);
			}
		}
		expression.next();
	}

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

Received on Monday, 5 November 2012 14:26:03 UTC