| /* |
| |
| 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.svg; |
| |
| 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.util.CSSConstants; |
| |
| /** |
| * This class provides a manager for the 'text-rendering' property values. |
| * |
| * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> |
| * @version $Id$ |
| */ |
| public class TextRenderingManager extends IdentifierManager { |
| |
| /** |
| * The identifier values. |
| */ |
| protected final static StringMap values = new StringMap(); |
| static { |
| values.put(CSSConstants.CSS_AUTO_VALUE, |
| SVGValueConstants.AUTO_VALUE); |
| values.put(CSSConstants.CSS_OPTIMIZESPEED_VALUE, |
| SVGValueConstants.OPTIMIZESPEED_VALUE); |
| values.put(CSSConstants.CSS_GEOMETRICPRECISION_VALUE, |
| SVGValueConstants.GEOMETRICPRECISION_VALUE); |
| values.put(CSSConstants.CSS_OPTIMIZELEGIBILITY_VALUE, |
| SVGValueConstants.OPTIMIZELEGIBILITY_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_TEXT_RENDERING_PROPERTY; |
| } |
| |
| /** |
| * Implements {@link |
| * org.apache.batik.css.engine.value.ValueManager#getDefaultValue()}. |
| */ |
| public Value getDefaultValue() { |
| return SVGValueConstants.AUTO_VALUE; |
| } |
| |
| /** |
| * Implements {@link IdentifierManager#getIdentifiers()}. |
| */ |
| public StringMap getIdentifiers() { |
| return values; |
| } |
| } |