The AUCheckIcon component is an IconView that functions as a checkbox.
API reference
/**Checked state*/
public static final int STATE_CHECKED = 0x01;
/**Unchecked state*/
public static final int STATE_UNCHECKED = 0x02;
/**Cannot be unchecked state*/
public static final int STATE_CANNOT_UNCHECKED = 0x03;
/**Cannot be checked state*/
public static final int STATE_CANNOT_CHECKED = 0x04;
/**
* Sets the state of the check icon.
* @param state
*/
public void setIconState(int state);
/**
* Gets the state of the check icon.
* @return
*/
public int getIconState() ;