/**@class android.graphics.drawable.ColorDrawable @extends android.graphics.drawable.Drawable A specialized Drawable that fills the Canvas with a specified color. Note that a ColorDrawable ignores the ColorFilter. <p>It can be defined in an XML file with the <code><color></code> element.</p> @attr ref android.R.styleable#ColorDrawable_color */ var ColorDrawable = { /** */ getChangingConfigurations : function( ) {}, /**A mutable BitmapDrawable still shares its Bitmap with any other Drawable that comes from the same resource. @return {Object {android.graphics.drawable.Drawable}} This drawable. */ mutate : function( ) {}, /** @hide */ clearMutated : function( ) {}, /** */ draw : function( ) {}, /**Gets the drawable's color value. @return {Number} int The color to draw. */ getColor : function( ) {}, /**Sets the drawable's color value. This action will clobber the results of prior calls to {@link #setAlpha}(int) on this object, which side-affected the underlying color. @param {Number} color The color to draw. */ setColor : function( ) {}, /**Returns the alpha value of this drawable's color. Note this may not be the same alpha value provided in {@link android.graphics.drawable.Drawable#setAlpha(int)}. Instead this will return the alpha of the color combined with the alpha provided by setAlpha @return {Number} A value between 0 and 255. @see ColorDrawable#setAlpha(int) */ getAlpha : function( ) {}, /**Applies the given alpha to the underlying color. Note if the color already has an alpha applied to it, this will apply this alpha to the existing value instead of overwriting it. @param {Number} alpha The alpha value to set, between 0 and 255. */ setAlpha : function( ) {}, /**Sets the color filter applied to this color. <p> Only supported on version {@link android.os.Build.VERSION_CODES#LOLLIPOP} and above. Calling this method has no effect on earlier versions. @see android.graphics.drawable.Drawable#setColorFilter(ColorFilter) */ setColorFilter : function( ) {}, /**Returns the color filter applied to this color configured by {@link #setColorFilter}(ColorFilter) @see android.graphics.drawable.Drawable#getColorFilter() */ getColorFilter : function( ) {}, /** */ setTintList : function( ) {}, /** */ setTintBlendMode : function( ) {}, /** */ isStateful : function( ) {}, /** @hide */ hasFocusStateSpecified : function( ) {}, /** @param {Object {Xfermode}} mode new transfer mode @param mode new transfer mode */ setXfermode : function( ) {}, /** @hide @return {Object {android.graphics.Xfermode}} current transfer mode */ getXfermode : function( ) {}, /** */ getOpacity : function( ) {}, /** */ getOutline : function( ) {}, /** */ inflate : function( ) {}, /** */ canApplyTheme : function( ) {}, /** */ applyTheme : function( ) {}, /** */ getConstantState : function( ) {}, };