All Downloads are FREE. Search and download functionalities are using the official Maven repository.

w3c.css.selectors.PseudoFactory Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
// $Id$
// Author: Jean-Guilhem Rouel
// (c) COPYRIGHT MIT, ERCIM and Keio, 2005.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.selectors;

import org.w3c.css.selectors.pseudofunctions.PseudoFunctionLang;
import org.w3c.css.selectors.pseudofunctions.PseudoFunctionNot;
import org.w3c.css.selectors.pseudofunctions.PseudoFunctionNthChild;
import org.w3c.css.selectors.pseudofunctions.PseudoFunctionNthLastChild;
import org.w3c.css.selectors.pseudofunctions.PseudoFunctionNthLastOfType;
import org.w3c.css.selectors.pseudofunctions.PseudoFunctionNthOfType;
import org.w3c.css.util.ApplContext;
import org.w3c.css.util.CssProfile;
import org.w3c.css.util.CssVersion;
import org.w3c.css.util.InvalidParamException;

/**
 * PseudoFactory
* Created: Sep 2, 2005 2:41:09 PM
*/ public class PseudoFactory { private static final String[] PSEUDOCLASS_CONSTANTSCSS3 = { "link", "visited", "active", "focus", "target", "hover", "first-child", "enabled", "disabled", "checked", "indeterminate", "root", "last-child", "first-of-type", "last-of-type", "only-of-type", "only-child", "empty", "fullscreen", "default", "valid", "invalid", "in-range", "out-of-range", "required", "optional", "read-only", "read-write", "defined", "placeholder-shown", // from selectors-4, unstable list (20190626) "any-link", "local-link", "target-within", "scope", "focus-visible", "focus-within", "current", "past", "future", "playing", "paused", "blank", "user-invalid", }; private static final String[] PSEUDOCLASS_CONSTANTSCSS2 = { "link", "visited", "active", "focus", "hover", "first-child" }; private static final String[] PSEUDOCLASS_CONSTANTSTV = { "link", "visited", "active", "focus", "first-child" }; private static final String[] PSEUDOCLASS_CONSTANTSCSS1 = { "link", "visited", "active" }; private static final String[] PSEUDOCLASS_CONSTANTS_MOBILE = { "link", "visited", "active", "focus" }; private static final String[] PSEUDOELEMENT_CONSTANTSCSS3 = { "first-line", "first-letter", "before", "after", "marker", "selection", "placeholder", "backdrop" }; private static final String[] PSEUDOELEMENT_CONSTANTSCSS2 = { "first-line", "first-letter", "before", "after" }; private static final String[] PSEUDOELEMENT_CONSTANTSCSS1 = { "first-line", "first-letter" }; private static final String[] PSEUDOFUNCTION_CONSTANTSCSS3 = { "nth-child", "nth-last-child", "nth-of-type", "nth-last-of-type", "lang", "not" // from selectors-4 unstable list (20190624) , "nth-col", "nth-last-col", "is", "where", "has", "dir" }; private static final String[] PSEUDOFUNCTION_CONSTANTSCSS2 = { "lang" }; /** * Returns the possible pseudo-classes for a version/profile pair * * @param version the CSS Level to get associated pseudo-classes definitions * @param profile the profile to get associated pseudo-classes * @return the possible pseudo-classes for the version/profile */ public static String[] getPseudoClass(CssVersion version, CssProfile profile) { // TODO we might need some merging in some cases // unused for now, but leaving the TODO to find it easily. switch (profile) { case TV: return PSEUDOCLASS_CONSTANTSTV; case MOBILE: return PSEUDOCLASS_CONSTANTS_MOBILE; } // not one of a specific version, let's match on CSS Version switch (version) { case CSS1: return PSEUDOCLASS_CONSTANTSCSS1; case CSS2: case CSS21: return PSEUDOCLASS_CONSTANTSCSS2; case CSS3: return PSEUDOCLASS_CONSTANTSCSS3; } // and the default return null; } /** * Returns the possible pseudo-elements for a profile * * @param version the CSS Version^Wlevel to get associated pseudo-elements * @return the possible pseudo-elements for the profile */ public static String[] getPseudoElement(CssVersion version) { switch (version) { case CSS2: case CSS21: return PSEUDOELEMENT_CONSTANTSCSS2; case CSS3: return PSEUDOELEMENT_CONSTANTSCSS3; case CSS1: return PSEUDOELEMENT_CONSTANTSCSS1; default: return null; } } /** * Returns the possible pseudo-functions for a profile * * @param version the profile to get associated pseudo-functions * @return the possible pseudo-functions for the profile */ public static String[] getPseudoFunction(CssVersion version) { switch (version) { case CSS2: case CSS21: return PSEUDOFUNCTION_CONSTANTSCSS2; case CSS3: return PSEUDOFUNCTION_CONSTANTSCSS3; case CSS1: default: return null; } } /** * Returns the possible pseudo-elements written as pseudo-classes * for a specific profile * * @param version the profile to get associated exceptions to the rule * @return the possible pseudo-elements/classes for the profile */ public static String[] getPseudoElementExceptions(CssVersion version) { switch (version) { case CSS2: case CSS21: case CSS3: return PSEUDOELEMENT_CONSTANTSCSS2; case CSS1: default: return null; } } /** * Returns a PseudoFunctionSelector based on the name of the * selector * * @param name, the name of the pseudofun selector * @param value, its value * @throws InvalidParamException */ public static PseudoFunctionSelector newPseudoFunction(String name, String value, ApplContext ac) throws InvalidParamException { if (name == null) { throw new InvalidParamException("pseudo", "null pseudofunction", ac); } if (name.equals("lang")) { return new PseudoFunctionLang(name, value); } if (name.equals("not")) { return new PseudoFunctionNot(name, value); } if (name.equals("nth-child")) { return new PseudoFunctionNthChild(name, value); } if (name.equals("nth-last-child")) { return new PseudoFunctionNthLastChild(name, value); } if (name.equals("nth-of-type")) { return new PseudoFunctionNthOfType(name, value); } if (name.equals("nth-last-of-type")) { return new PseudoFunctionNthLastOfType(name, value); } throw new InvalidParamException("pseudo", ":" + name, ac); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy