package org.as3lib.kitchensync.action.tweentarget { /** * Allows a control interface for translating values to and from numeric values. * e.g. setting a base-n number with a decimal number * * @author Mims Wright * @since 1.5 */ public interface lib_flex_animation_code_10_org_as3lib_kitchensync_action_tweentarget_INumericController { /** * This is the current value of the number. */ function get currentValue():Number; function set currentValue(currentValue:Number):void; } }