package org.mt4jx.components.visibleComponents.widgets;
/**
* The Interface BooleanForm for the MTCheckBox and MTOptionBox forms.
*/
public interface BooleanForm {
/**
* Gets the boolean value.
*
* @return the boolean value
*/
public boolean getBooleanValue();
/**
* Sets the boolean value.
*
* @param value the new boolean value
*/
public void setBooleanValue(boolean value);
}