/*

   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;

import org.apache.batik.css.engine.CSSEngine;
import org.apache.batik.css.engine.CSSStylableElement;
import org.apache.batik.css.engine.StyleMap;
import org.w3c.css.sac.LexicalUnit;
import org.w3c.dom.DOMException;

This interface is implemented by objects which manage the values associated with a property.
Author:Stephane Hillion
Version:$Id: ValueManager.java 1808001 2017-09-11 09:51:29Z ssteiner $
/** * This interface is implemented by objects which manage the values associated * with a property. * * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @version $Id: ValueManager.java 1808001 2017-09-11 09:51:29Z ssteiner $ */
public interface ValueManager {
Returns the name of the property handled.
/** * Returns the name of the property handled. */
String getPropertyName();
Whether the handled property is inherited or not.
/** * Whether the handled property is inherited or not. */
boolean isInheritedProperty();
Whether the handled property can be animated.
/** * Whether the handled property can be animated. */
boolean isAnimatableProperty();
Whether the handled property can be additively animated.
/** * Whether the handled property can be additively animated. */
boolean isAdditiveProperty();
Returns the type of value this manager handles. This should be one of the TYPE_* constants defined in SVGTypes.
/** * Returns the type of value this manager handles. This should be * one of the TYPE_* constants defined in * {@link org.apache.batik.util.SVGTypes}. */
int getPropertyType();
Returns the default value for the handled property.
/** * Returns the default value for the handled property. */
Value getDefaultValue();
Creates a value from a lexical unit.
Params:
  • lu – The SAC lexical unit used to create the value.
  • engine – The calling CSSEngine.
/** * Creates a value from a lexical unit. * @param lu The SAC lexical unit used to create the value. * @param engine The calling CSSEngine. */
Value createValue(LexicalUnit lu, CSSEngine engine) throws DOMException;
Creates and returns a new float value.
Params:
  • unitType – A unit code as defined above. The unit code can only be a float unit type
  • floatValue – The new float value.
/** * Creates and returns a new float value. * @param unitType A unit code as defined above. The unit code can only * be a float unit type * @param floatValue The new float value. */
Value createFloatValue(short unitType, float floatValue) throws DOMException;
Creates and returns a new string value.
Params:
  • type – A string code as defined in CSSPrimitiveValue. The string code can only be a string unit type.
  • value – The new string value.
  • engine – The CSS engine.
/** * Creates and returns a new string value. * @param type A string code as defined in CSSPrimitiveValue. The string * code can only be a string unit type. * @param value The new string value. * @param engine The CSS engine. */
Value createStringValue(short type, String value, CSSEngine engine) throws DOMException;
Computes the given value.
Params:
  • elt – The owner of the value.
  • pseudo – The pseudo element.
  • engine – The CSSEngine.
  • idx – The property index in the engine.
  • sm – The computed style map.
  • value – The value to compute.
/** * Computes the given value. * @param elt The owner of the value. * @param pseudo The pseudo element. * @param engine The CSSEngine. * @param idx The property index in the engine. * @param sm The computed style map. * @param value The value to compute. */
Value computeValue(CSSStylableElement elt, String pseudo, CSSEngine engine, int idx, StyleMap sm, Value value); }