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

@extends android.text.style.MetricAffectingSpan

 The span that moves the position of the text baseline higher.
 <p>
 The span can be used like this:
 <pre>{@code
  SpannableString string = new SpannableString("1st example");
string.setSpan(new SuperscriptSpan(), 1, 3, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);}</pre>
 <img src="{@docRoot}reference/android/images/text/style/superscriptspan.png" />
 <figcaption>Text with <code>SuperscriptSpan</code>.</figcaption>
 Note: Since the span affects the position of the text, if the text is on the first line of a
 TextView, it may appear cut. This can be avoided by decreasing the text size with an {@link android.text.style.AbsoluteSizeSpan}
*/
var SuperscriptSpan = {

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

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

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

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

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

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

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


};