/extensions/org/mt4jx/components/visibleComponents/widgets/BooleanForm.java
http://mt4j.googlecode.com/ · Java · 21 lines · 5 code · 3 blank · 13 comment · 0 complexity · 7a93a72dd7936e6c0cb38566daf048ca MD5 · raw file
- 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);
- }