/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

  1. package org.mt4jx.components.visibleComponents.widgets;
  2. /**
  3. * The Interface BooleanForm for the MTCheckBox and MTOptionBox forms.
  4. */
  5. public interface BooleanForm {
  6. /**
  7. * Gets the boolean value.
  8. *
  9. * @return the boolean value
  10. */
  11. public boolean getBooleanValue();
  12. /**
  13. * Sets the boolean value.
  14. *
  15. * @param value the new boolean value
  16. */
  17. public void setBooleanValue(boolean value);
  18. }