/**@class android.widget.CheckBox
@extends android.widget.CompoundButton

 <p>
 A checkbox is a specific type of two-states button that can be either
 checked or unchecked. A example usage of a checkbox inside your activity
 would be the following:
 </p>

 <pre class="prettyprint">
 public class MyActivity extends Activity {
     protected void onCreate(Bundle icicle) {
         super.onCreate(icicle);

         setContentView(R.layout.content_layout_id);

         final CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox_id);
         if (checkBox.isChecked()) {
             checkBox.setChecked(false);
         }
     }
 }
 </pre>

 <p>See the <a href="{@docRoot}guide/topics/ui/controls/checkbox.html">Checkboxes</a>
 guide.</p>

 <p><strong>XML attributes</strong></p>
 <p>
 See {@link android.R.styleable#android.widget.CompoundButton android.widget.CompoundButton Attributes},
 {@link android.R.styleable#android.widget.Button android.widget.Button Attributes},
 {@link android.R.styleable#android.widget.TextView android.widget.TextView Attributes},
 {@link android.R.styleable#View View Attributes}
 </p>
*/
var CheckBox = {

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


};