/**@class android.widget.TableRow
@extends android.widget.LinearLayout

 <p>A layout that arranges its children horizontally. A TableRow should
 always be used as a child of a {@link android.widget.TableLayout}. If a
 TableRow's parent is not a TableLayout, the TableRow will behave as
 an horizontal {@link android.widget.LinearLayout}.</p>

 <p>The children of a TableRow do not need to specify the
 <code>layout_width</code> and <code>layout_height</code> attributes in the
 XML file. TableRow always enforces those values to be respectively
 {@link android.widget.TableLayout.LayoutParams#MATCH_PARENT} and
 {@link android.widget.TableLayout.LayoutParams#WRAP_CONTENT}.</p>

 <p>
 Also see {@link TableRow.LayoutParams android.widget.TableRow.LayoutParams}
 for layout attributes </p>
*/
var TableRow = {

/**{@inheritDoc}
*/
setOnHierarchyChangeListener : function(  ) {},

/**{@inheritDoc}
*/
getVirtualChildAt : function(  ) {},

/**{@inheritDoc}
*/
getVirtualChildCount : function(  ) {},

/**{@inheritDoc}
*/
generateLayoutParams : function(  ) {},

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


};