blob: 86a4fe7d2ff1146910ec98adb8df2388d33f01ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Innoopract Informationssysteme GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.rwt.internal.theme.css;
import org.w3c.css.sac.AttributeCondition;
public class PseudoClassConditionImpl
implements AttributeCondition, ConditionExt
{
private final String value;
public PseudoClassConditionImpl( final String value ) {
this.value = value;
}
public String getLocalName() {
return null;
}
public String getNamespaceURI() {
return null;
}
public boolean getSpecified() {
return false;
}
public String getValue() {
return value;
}
public short getConditionType() {
return SAC_PSEUDO_CLASS_CONDITION;
}
public boolean matches( final Element element ) {
return element.hasPseudoClass( value );
}
public int getSpecificity() {
return ATTR_SPEC;
}
public String[] getClasses() {
return null;
}
public String toString() {
return ":" + value;
}
}