/* CheckAgent.java
Purpose:
Description:
History:
Mar 20, 2012 Created by pao
Copyright (C) 2011 Potix Corporation. All Rights Reserved.
*/
package org.zkoss.zats.mimic.operation;
/**
* To change the check status of a component including Menuitem, Toolbarbutton, Checkbox, and Radio.
* @author pao
*/
public interface CheckAgent extends OperationAgent {
/**
* change the check status.
* @param checked true for checked
*/
void check(boolean checked);
}