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

w3c.css.selectors.UniversalSelector 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;

/**
 * Universal
* Created: Sep 1, 2005 3:45:13 PM
*/ public class UniversalSelector implements Selector { String prefix = null; public UniversalSelector(String prefix) { this.prefix = prefix; } /** * @see Selector#toString() */ public String toString() { if (prefix != null) { return prefix + "|*"; } return "*"; } /** * @see Selector#canApply(Selector) */ public boolean canApply(Selector other) { return true; } /** * @see Selector#getName() */ public String getName() { return "*"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy