/**@class android.app.TabActivity
@extends android.app.ActivityGroup

 <p>For apps developing against {@link android.os.Build.VERSION_CODES#HONEYCOMB}
 or later, tabs are typically presented in the UI using the new
 {@link android.app.ActionBar#newTab() android.app.ActionBar.newTab()} and
 related APIs for placing tabs within their action bar area.</p>

 @deprecated New applications should use Fragments instead of this class;
 to continue to run on older devices, you can use the v4 support library
 which provides a version of the Fragment API that is compatible down to
 {@link android.os.Build.VERSION_CODES#DONUT}.
*/
var TabActivity = {

/**Sets the default tab that is the first tab highlighted.
@param {String} tag the name of the default tab
*/
setDefaultTab : function(  ) {},

/**Sets the default tab that is the first tab highlighted.
@param {Number} index the index of the default tab
*/
setDefaultTab : function(  ) {},

/**Updates the screen state (current list and other views) when the
 content changes.
@see Activity#onContentChanged()
*/
onContentChanged : function(  ) {},

/**Returns the {@link android.app.ActionBar.TabHost} the activity is using to host its tabs.
@return {Object {android.widget.TabHost}} the {@link TabHost} the activity is using to host its tabs.
*/
getTabHost : function(  ) {},

/**Returns the {@link android.app.ActionBar.TabWidget} the activity is using to draw the actual tabs.
@return {Object {android.widget.TabWidget}} the {@link TabWidget} the activity is using to draw the actual tabs.
*/
getTabWidget : function(  ) {},


};