com.steadystate.css.parser.selectors.PseudoElementSelectorImpl Maven / Gradle / Ivy
/*
* Copyright (C) 1999-2017 David Schweinsberg.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.steadystate.css.parser.selectors;
import java.io.Serializable;
import org.w3c.css.sac.ElementSelector;
import org.w3c.css.sac.Selector;
import com.steadystate.css.format.CSSFormat;
import com.steadystate.css.format.CSSFormatable;
import com.steadystate.css.parser.LocatableImpl;
/**
*
* @author David Schweinsberg
* @author rbri
*/
public class PseudoElementSelectorImpl extends LocatableImpl implements ElementSelector, CSSFormatable, Serializable {
private static final long serialVersionUID = 2913936296006875268L;
private String localName_;
private boolean doubleColon_;
public void setLocaleName(final String localName) {
localName_ = localName;
}
public PseudoElementSelectorImpl(final String localName) {
setLocaleName(localName);
}
public short getSelectorType() {
return Selector.SAC_PSEUDO_ELEMENT_SELECTOR;
}
public String getNamespaceURI() {
return null;
}
public String getLocalName() {
return localName_;
}
public void prefixedWithDoubleColon() {
doubleColon_ = true;
}
/**
* {@inheritDoc}
*/
public String getCssText(final CSSFormat format) {
if (localName_ == null) {
return localName_;
}
return (doubleColon_ ? "::" : ":") + localName_;
}
@Override
public String toString() {
return getCssText(null);
}
}