blob: db7bf7064d3407e2db407f96b6bd928d5cf01e31 [file] [log] [blame]
/*
Copyright 2004 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.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.util.SVG12CSSConstants;
/**
* This class provides a manager for the 'text-align' property values.
*
* @author <a href="mailto:deweese@apache.org">Thomas DeWeese</a>
* @version $Id$
*/
public class TextAlignManager extends IdentifierManager {
/**
* The identifier values.
*/
protected final static 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
* 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;
}
}