/**
* Returns a representation of the selector.
*/
public String toString() {
SimpleSelector s = getSimpleSelector();
if (s.getSelectorType() == SAC_PSEUDO_ELEMENT_SELECTOR) {
return "" + getAncestorSelector() + s;
}
return getAncestorSelector() + " > " + s;
}