Example #1
0
  /**
   * Respond to a value change by passing the logical NOT of the value on to any Meems depending
   * upon the outbound Binary Facet.
   *
   * @param value Changed boolean value
   */
  public void valueChanged(boolean value) {

    // if (this.value == value) {
    this.value = !value;
    binaryClient.valueChanged(this.value);
    // }
  }
Example #2
0
 /**
  * Send content to a Binary client that has just had it's Reference added.
  *
  * @param target Reference to the target Meem
  * @param filter No Filters are currently implemented
  */
 public void sendContent(Binary target, Filter filter) {
   target.valueChanged(value);
 }