/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You 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.svg12;

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.SVG12CSSConstants;
import org.apache.batik.util.SVGTypes;

This class provides a manager for the 'text-align' property values.
Author:Thomas DeWeese
Version:$Id: TextAlignManager.java 1808001 2017-09-11 09:51:29Z ssteiner $
/** * This class provides a manager for the 'text-align' property values. * * @author <a href="mailto:deweese@apache.org">Thomas DeWeese</a> * @version $Id: TextAlignManager.java 1808001 2017-09-11 09:51:29Z ssteiner $ */
public class TextAlignManager extends IdentifierManager {
The identifier values.
/** * The identifier values. */
protected static final StringMap values = new StringMap(); static { values.put(SVG12CSSConstants.CSS_START_VALUE, SVG12ValueConstants.START_VALUE); values.put(SVG12CSSConstants.CSS_MIDDLE_VALUE, SVG12ValueConstants.MIDDLE_VALUE); values.put(SVG12CSSConstants.CSS_END_VALUE, SVG12ValueConstants.END_VALUE); values.put(SVG12CSSConstants.CSS_FULL_VALUE, SVG12ValueConstants.FULL_VALUE); } /** * Implements {@link * org.apache.batik.css.engine.value.ValueManager#isInheritedProperty()}. */ public boolean isInheritedProperty() { return true; } /** * Implements {@link ValueManager#isAnimatableProperty()}. */ public boolean isAnimatableProperty() { return true; } /** * Implements {@link ValueManager#isAdditiveProperty()}. */ public boolean isAdditiveProperty() { return false; } /** * Implements {@link ValueManager#getPropertyType()}. */ public int getPropertyType() { return SVGTypes.TYPE_IDENT; } /** * Implements {@link * org.apache.batik.css.engine.value.ValueManager#getPropertyName()}. */ public String getPropertyName() { return SVG12CSSConstants.CSS_TEXT_ALIGN_PROPERTY; } /** * Implements {@link * org.apache.batik.css.engine.value.ValueManager#getDefaultValue()}. */ public Value getDefaultValue() { return ValueConstants.INHERIT_VALUE; } /** * Implements {@link IdentifierManager#getIdentifiers()}. */ public StringMap getIdentifiers() { return values; } }