/**@class android.text.style.TextAppearanceSpan
 implements android.text.ParcelableSpan

@extends android.text.style.MetricAffectingSpan

 Sets the text appearance using the given
 {@link android.R.styleable#TextAppearance TextAppearance} attributes.
 By default {@link android.text.style.TextAppearanceSpan} only changes the specified attributes in XML.
 {@link android.R.styleable#TextAppearance_textColorHighlight textColorHighlight},
 {@link android.R.styleable#TextAppearance_textColorHint textColorHint},
 {@link android.R.styleable#TextAppearance_textAllCaps textAllCaps} and
 {@link android.R.styleable#TextAppearance_fallbackLineSpacing fallbackLineSpacing}
 are not supported by {@link android.text.style.TextAppearanceSpan}.

 {@see android.widget.TextView#setTextAppearance(int)}

 @attr ref android.R.styleable#TextAppearance_fontFamily
 @attr ref android.R.styleable#TextAppearance_textColor
 @attr ref android.R.styleable#TextAppearance_textColorLink
 @attr ref android.R.styleable#TextAppearance_textFontWeight
 @attr ref android.R.styleable#TextAppearance_textSize
 @attr ref android.R.styleable#TextAppearance_textStyle
 @attr ref android.R.styleable#TextAppearance_typeface
 @attr ref android.R.styleable#TextAppearance_shadowColor
 @attr ref android.R.styleable#TextAppearance_shadowDx
 @attr ref android.R.styleable#TextAppearance_shadowDy
 @attr ref android.R.styleable#TextAppearance_shadowRadius
 @attr ref android.R.styleable#TextAppearance_elegantTextHeight
 @attr ref android.R.styleable#TextAppearance_letterSpacing
 @attr ref android.R.styleable#TextAppearance_fontFeatureSettings
 @attr ref android.R.styleable#TextAppearance_fontVariationSettings

*/
var TextAppearanceSpan = {

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

/**
@hide 
*/
getSpanTypeIdInternal : function(  ) {},

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

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

/**
@hide 
*/
writeToParcelInternal : function(  ) {},

/**Returns the typeface family specified by this span, or <code>null</code>
 if it does not specify one.
*/
getFamily : function(  ) {},

/**Returns the text color specified by this span, or <code>null</code>
 if it does not specify one.
*/
getTextColor : function(  ) {},

/**Returns the link color specified by this span, or <code>null</code>
 if it does not specify one.
*/
getLinkTextColor : function(  ) {},

/**Returns the text size specified by this span, or <code>-1</code>
 if it does not specify one.
*/
getTextSize : function(  ) {},

/**Returns the text style specified by this span, or <code>0</code>
 if it does not specify one.
*/
getTextStyle : function(  ) {},

/**Returns the text font weight specified by this span, or <code>-1</code>
 if it does not specify one.
*/
getTextFontWeight : function(  ) {},

/**Returns the {@link android.os.LocaleList} specified by this span, or <code>null</code>
 if it does not specify one.
*/
getTextLocales : function(  ) {},

/**Returns the typeface specified by this span, or <code>null</code>
 if it does not specify one.
*/
getTypeface : function(  ) {},

/**Returns the color of the text shadow specified by this span, or <code>0</code>
 if it does not specify one.
*/
getShadowColor : function(  ) {},

/**Returns the horizontal offset of the text shadow specified by this span, or <code>0.0f</code>
 if it does not specify one.
*/
getShadowDx : function(  ) {},

/**Returns the vertical offset of the text shadow specified by this span, or <code>0.0f</code>
 if it does not specify one.
*/
getShadowDy : function(  ) {},

/**Returns the blur radius of the text shadow specified by this span, or <code>0.0f</code>
 if it does not specify one.
*/
getShadowRadius : function(  ) {},

/**Returns the font feature settings specified by this span, or <code>null</code>
 if it does not specify one.
*/
getFontFeatureSettings : function(  ) {},

/**Returns the font variation settings specified by this span, or <code>null</code>
 if it does not specify one.
*/
getFontVariationSettings : function(  ) {},

/**Returns the value of elegant height metrics flag specified by this span,
 or <code>false</code> if it does not specify one.
*/
isElegantTextHeight : function(  ) {},

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

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


};