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

com.steadystate.css.parser.selectors.ClassConditionImpl Maven / Gradle / Ivy

/*
 * Copyright (C) 1999-2020 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.AttributeCondition;
import org.w3c.css.sac.Condition;

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 ClassConditionImpl extends LocatableImpl implements AttributeCondition, CSSFormatable, Serializable {

    private static final long serialVersionUID = -2216489300949054242L;

    private String value_;

    public void setValue(final String value) {
        value_ = value;
    }

    public ClassConditionImpl(final String value) {
        setValue(value);
    }

    @Override
    public short getConditionType() {
        return Condition.SAC_CLASS_CONDITION;
    }

    @Override
    public String getNamespaceURI() {
        return null;
    }

    @Override
    public String getLocalName() {
        return null;
    }

    @Override
    public boolean getSpecified() {
        return true;
    }

    @Override
    public String getValue() {
        return value_;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getCssText(final CSSFormat format) {
        final String value = getValue();
        if (value != null) {
            return "." + value;
        }
        return ".";
    }

    @Override
    public String toString() {
        return getCssText(null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy