w3c.css.properties.css3.CssVoicePitch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssvalidator Show documentation
Show all versions of cssvalidator Show documentation
Backend for the W3C CSS Validation Service
// $Id$
// Author: Yves Lafon
//
// (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.CssCheckableValue;
import org.w3c.css.values.CssExpression;
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-pitch
*/
public class CssVoicePitch extends org.w3c.css.properties.css.CssVoicePitch {
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 CssVoicePitch
*/
public CssVoicePitch() {
value = initial;
}
/**
* Creates a new CssVoicePitch
*
* @param expression The expression for this property
* @throws org.w3c.css.util.InvalidParamException
* Expressions are incorrect
*/
public CssVoicePitch(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);
}
CssCheckableValue frequency = numVal.getCheckableValue();
frequency.warnPositiveness(ac, this);
}
ArrayList values = new ArrayList(2);
values.add(numVal);
values.add(identVal);
value = new CssValueList(values);
}
}
public CssVoicePitch(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy