/**@class android.graphics.drawable.RotateDrawable
@extends android.graphics.drawable.DrawableWrapper

 <p>
 A Drawable that can rotate another Drawable based on the current level value.
 The start and end angles of rotation can be controlled to map any circular
 arc to the level values range.
 <p>
 It can be defined in an XML file with the <code>&lt;rotate&gt;</code> element.
 For more information, see the guide to
 <a href="{@docRoot}guide/topics/resources/animation-resource.html">Animation Resources</a>.

 @attr ref android.R.styleable#RotateDrawable_visible
 @attr ref android.R.styleable#RotateDrawable_fromDegrees
 @attr ref android.R.styleable#RotateDrawable_toDegrees
 @attr ref android.R.styleable#RotateDrawable_pivotX
 @attr ref android.R.styleable#RotateDrawable_pivotY
 @attr ref android.R.styleable#RotateDrawable_drawable
*/
var RotateDrawable = {

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

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

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

/**Sets the start angle for rotation.
@param {Number} fromDegrees starting angle in degrees
@see #getFromDegrees()
@attr ref android.R.styleable#RotateDrawable_fromDegrees
*/
setFromDegrees : function(  ) {},

/**
@return {Number} starting angle for rotation in degrees
@see #setFromDegrees(float)
@attr ref android.R.styleable#RotateDrawable_fromDegrees
*/
getFromDegrees : function(  ) {},

/**Sets the end angle for rotation.
@param {Number} toDegrees ending angle in degrees
@see #getToDegrees()
@attr ref android.R.styleable#RotateDrawable_toDegrees
*/
setToDegrees : function(  ) {},

/**
@return {Number} ending angle for rotation in degrees
@see #setToDegrees(float)
@attr ref android.R.styleable#RotateDrawable_toDegrees
*/
getToDegrees : function(  ) {},

/**Sets the X position around which the drawable is rotated.
 <p>
 If the X pivot is relative (as specified by
 {@link #setPivotXRelative}(boolean)), then the position represents a
 fraction of the drawable width. Otherwise, the position represents an
 absolute value in pixels.
@param {Number} pivotX X position around which to rotate
@see #setPivotXRelative(boolean)
@attr ref android.R.styleable#RotateDrawable_pivotX
*/
setPivotX : function(  ) {},

/**
@return {Number} X position around which to rotate
@see #setPivotX(float)
@attr ref android.R.styleable#RotateDrawable_pivotX
*/
getPivotX : function(  ) {},

/**Sets whether the X pivot value represents a fraction of the drawable
 width or an absolute value in pixels.
@param {Boolean} relative true if the X pivot represents a fraction of the drawable
            width, or false if it represents an absolute value in pixels
@see #isPivotXRelative()
*/
setPivotXRelative : function(  ) {},

/**
@return {Boolean} true if the X pivot represents a fraction of the drawable width,
         or false if it represents an absolute value in pixels
@see #setPivotXRelative(boolean)
*/
isPivotXRelative : function(  ) {},

/**Sets the Y position around which the drawable is rotated.
 <p>
 If the Y pivot is relative (as specified by
 {@link #setPivotYRelative}(boolean)), then the position represents a
 fraction of the drawable height. Otherwise, the position represents an
 absolute value in pixels.
@param {Number} pivotY Y position around which to rotate
@see #getPivotY()
@attr ref android.R.styleable#RotateDrawable_pivotY
*/
setPivotY : function(  ) {},

/**
@return {Number} Y position around which to rotate
@see #setPivotY(float)
@attr ref android.R.styleable#RotateDrawable_pivotY
*/
getPivotY : function(  ) {},

/**Sets whether the Y pivot value represents a fraction of the drawable
 height or an absolute value in pixels.
@param {Boolean} relative True if the Y pivot represents a fraction of the drawable
            height, or false if it represents an absolute value in pixels
@see #isPivotYRelative()
*/
setPivotYRelative : function(  ) {},

/**
@return {Boolean} true if the Y pivot represents a fraction of the drawable height,
         or false if it represents an absolute value in pixels
@see #setPivotYRelative(boolean)
*/
isPivotYRelative : function(  ) {},


};