BooleanForm.java :  » Java-2D » mt4j » org » mt4jx » components » visibleComponents » widgets » Java Open Source

Java Open Source » Java 2D » mt4j 
mt4j » org » mt4jx » components » visibleComponents » widgets » BooleanForm.java
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);
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.