/*

   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.anim.values;

import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;

import org.apache.batik.anim.dom.AnimationTarget;

An abstract class for values in the animation engine.
Author:Cameron McCormack
Version:$Id: AnimatableValue.java 1733416 2016-03-03 07:07:13Z gadams $
/** * An abstract class for values in the animation engine. * * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @version $Id: AnimatableValue.java 1733416 2016-03-03 07:07:13Z gadams $ */
public abstract class AnimatableValue {
A formatting object to get CSS compatible float strings.
/** * A formatting object to get CSS compatible float strings. */
protected static DecimalFormat decimalFormat = new DecimalFormat ("0.0###########################################################", new DecimalFormatSymbols(Locale.ENGLISH));
The target of the animation.
/** * The target of the animation. */
protected AnimationTarget target;
Whether this value has changed since the last call to hasChanged(). This must be updated within interpolate in descendant classes.
/** * Whether this value has changed since the last call to * {@link #hasChanged()}. This must be updated within {@link #interpolate} * in descendant classes. */
protected boolean hasChanged = true;
Creates a new AnimatableValue.
/** * Creates a new AnimatableValue. */
protected AnimatableValue(AnimationTarget target) { this.target = target; }
Returns a CSS compatible string version of the specified float.
/** * Returns a CSS compatible string version of the specified float. */
public static String formatNumber(float f) { return decimalFormat.format(f); }
Performs interpolation to the given value.
Params:
  • result – the object in which to store the result of the interpolation, or null if a new object should be created
  • to – the value this value should be interpolated towards, or null if no actual interpolation should be performed
  • interpolation – the interpolation distance, 0 <= interpolation <= 1
  • accumulation – an accumulation to add to the interpolated value
  • multiplier – an amount the accumulation values should be multiplied by before being added to the interpolated value
/** * Performs interpolation to the given value. * @param result the object in which to store the result of the * interpolation, or null if a new object should be created * @param to the value this value should be interpolated towards, or null * if no actual interpolation should be performed * @param interpolation the interpolation distance, 0 &lt;= interpolation * &lt;= 1 * @param accumulation an accumulation to add to the interpolated value * @param multiplier an amount the accumulation values should be multiplied * by before being added to the interpolated value */
public abstract AnimatableValue interpolate(AnimatableValue result, AnimatableValue to, float interpolation, AnimatableValue accumulation, int multiplier);
Returns whether two values of this type can have their distance computed, as needed by paced animation.
/** * Returns whether two values of this type can have their distance * computed, as needed by paced animation. */
public abstract boolean canPace();
Returns the absolute distance between this value and the specified other value.
/** * Returns the absolute distance between this value and the specified other * value. */
public abstract float distanceTo(AnimatableValue other);
Returns a zero value of this AnimatableValue's type.
/** * Returns a zero value of this AnimatableValue's type. */
public abstract AnimatableValue getZeroValue();
Returns the CSS text representation of the value.
/** * Returns the CSS text representation of the value. */
public String getCssText() { return null; }
Returns whether the value in this AnimatableValue has been modified.
/** * Returns whether the value in this AnimatableValue has been modified. */
public boolean hasChanged() { boolean ret = hasChanged; hasChanged = false; return ret; }
Returns a string representation of this object. This should be overridden in classes that do not have a CSS representation.
/** * Returns a string representation of this object. This should be * overridden in classes that do not have a CSS representation. */
public String toStringRep() { return getCssText(); }
Returns a string representation of this object prefixed with its class name.
/** * Returns a string representation of this object prefixed with its * class name. */
public String toString() { return getClass().getName() + "[" + toStringRep() + "]"; } }