w3c.css.selectors.ChildSelector Maven / Gradle / Ivy
// $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;
/**
* Child
* Created: Sep 1, 2005 3:58:00 PM
*/
public class ChildSelector implements Selector {
/**
* @see Selector#toString()
*/
public String toString() {
return " > ";
}
/**
* @see Selector#getName()
*/
public String getName() {
return ">";
}
/**
* @see Selector#canApply(Selector)
*/
public boolean canApply(Selector other) {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy