/******************************************************************************* * Copyright (c) 2008, 2009 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 * EclipseSource - ongoing development ******************************************************************************/ package org.eclipse.rwt.internal.theme.css; import org.w3c.css.sac.*; public class ConditionalSelectorImpl implements ConditionalSelector, SelectorExt { private final SimpleSelector selector; private final Condition condition; public ConditionalSelectorImpl( final SimpleSelector selector, final Condition condition ) { this.selector = selector; this.condition = condition; } public Condition getCondition() { return condition; } public SimpleSelector getSimpleSelector() { return selector; } public short getSelectorType() { return SAC_CONDITIONAL_SELECTOR; } public int getSpecificity() { Specific specificSelector = ( Specific )selector; Specific specificCondition = ( Specific )condition; return specificSelector.getSpecificity() + specificCondition.getSpecificity(); } public String getElementName() { return ( ( SelectorExt )selector ).getElementName(); } public String[] getConstraints() { return ( ( ConditionExt )condition ).getConstraints(); } public String toString() { return selector.toString() + condition.toString(); } }