// // Author: Yves Lafon // // (c) COPYRIGHT MIT, ERCIM, Keio, Beihang, 2016. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.svg.colorprofile; import org.w3c.css.util.ApplContext; import org.w3c.css.util.InvalidParamException; import org.w3c.css.values.CssExpression; import org.w3c.css.values.CssTypes; import org.w3c.css.values.CssValue; /** * @spec http://www.w3.org/TR/2011/REC-SVG11-20110816/color.html#ColorProfileNameProperty */ public class CssName extends org.w3c.css.properties.css.colorprofile.CssName { /** * Create a new CssName */ public CssName() { value = initial; } /** * Creates a new CssName * * @param expression The expression for this property * @throws org.w3c.css.util.InvalidParamException * Expressions are incorrect */ public CssName(ApplContext ac, CssExpression expression, boolean check) throws InvalidParamException { setByUser(); CssValue val = expression.getValue(); if (check && expression.getCount() > 1) { throw new InvalidParamException("unrecognize", ac); } if (val.getType() != CssTypes.CSS_IDENT) { throw new InvalidParamException("value", expression.getValue(), getPropertyName(), ac); } // ident, so inherit, or allowed value if (inherit.equals(val)) { // TODO - we might forbid come values // like inherit, initial and other reserved names value = inherit; } else { value = val; } expression.next(); } public CssName(ApplContext ac, CssExpression expression) throws InvalidParamException { this(ac, expression, false); } }