// // Author: Yves Lafon // // (c) COPYRIGHT MIT, ERCIM, Keio, Beihang, 2021. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.selectors.pseudofunctions; import org.w3c.css.parser.CssSelectors; import org.w3c.css.selectors.PseudoFunctionSelector; import java.util.ArrayList; /** * PseudoFunctionWhere */ public class PseudoFunctionWhere extends PseudoFunctionSelector { public PseudoFunctionWhere(String name, String value) { setName(name); setParam(value); } public PseudoFunctionWhere(String name, ArrayList selector_list) { this(name, CssSelectors.toArrayString(selector_list)); } }