package org.as3lib.kitchensync.action { /** * An algorithm that parses data from an object into tween data. * * @author Mims Wright * @since 1.6 */ public interface lib_flex_animation_code_10_org_as3lib_kitchensync_action_ITweenObjectParser { /** returns an action based on an object you provide. */ function parseObject(object:Object):ITween; /** Returns a list of the reserved words for this parser */ function get keywords():Array; } }