| /* |
| |
| Copyright 2002-2003 The Apache Software Foundation |
| |
| 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 org.apache.batik.css.engine.value.css2; |
| |
| import org.apache.batik.css.engine.value.IdentifierManager; |
| import org.apache.batik.css.engine.value.StringMap; |
| import org.apache.batik.css.engine.value.Value; |
| import org.apache.batik.css.engine.value.ValueConstants; |
| import org.apache.batik.css.engine.value.ValueManager; |
| import org.apache.batik.util.CSSConstants; |
| |
| /** |
| * This class provides a manager for the 'direction' property values. |
| * |
| * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> |
| * @version $Id$ |
| */ |
| public class DirectionManager extends IdentifierManager { |
| |
| /** |
| * The identifier values. |
| */ |
| protected final static StringMap values = new StringMap(); |
| static { |
| values.put(CSSConstants.CSS_LTR_VALUE, ValueConstants.LTR_VALUE); |
| values.put(CSSConstants.CSS_RTL_VALUE, ValueConstants.RTL_VALUE); |
| } |
| |
| /** |
| * Implements {@link |
| * org.apache.batik.css.engine.value.ValueManager#isInheritedProperty()}. |
| */ |
| public boolean isInheritedProperty() { |
| return true; |
| } |
| |
| /** |
| * Implements {@link |
| * org.apache.batik.css.engine.value.ValueManager#getPropertyName()}. |
| */ |
| public String getPropertyName() { |
| return CSSConstants.CSS_DIRECTION_PROPERTY; |
| } |
| |
| /** |
| * Implements {@link |
| * org.apache.batik.css.engine.value.ValueManager#getDefaultValue()}. |
| */ |
| public Value getDefaultValue() { |
| return ValueConstants.LTR_VALUE; |
| } |
| |
| /** |
| * Implements {@link IdentifierManager#getIdentifiers()}. |
| */ |
| public StringMap getIdentifiers() { |
| return values; |
| } |
| } |