/**@class android.transition.ChangeImageTransform
@extends android.transition.Transition

 This Transition captures an ImageView's matrix before and after the
 scene change and animates it during the transition.

 <p>In combination with ChangeBounds, ChangeImageTransform allows ImageViews
 that change size, shape, or {@link android.widget.ImageView.ScaleType} to animate contents
 smoothly.</p>
*/
var ChangeImageTransform = {

/**
*/
captureStartValues : function(  ) {},

/**
*/
captureEndValues : function(  ) {},

/**
*/
getTransitionProperties : function(  ) {},

/**Creates an Animator for ImageViews moving, changing dimensions, and/or changing
 {@link android.widget.ImageView.ScaleType}.
@param {Object {ViewGroup}} sceneRoot   The root of the transition hierarchy.
@param {Object {TransitionValues}} startValues The values for a specific target in the start scene.
@param {Object {TransitionValues}} endValues   The values for the target in the end scene.
@return {Object {android.animation.Animator}} An Animator to move an ImageView or null if the View is not an ImageView,
 the Drawable changed, the View is not VISIBLE, or there was no change.
*/
createAnimator : function(  ) {},


};