Contains standard libraries for ZenCode.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SimpleLiveBool.zs 458B

123456789101112131415161718192021222324
  1. import listeners.ListenerList;
  2. public class SimpleLiveBool {
  3. val listeners = new ListenerList<LiveBool.Listener>;
  4. var value as bool : get;
  5. public this(value as bool) {
  6. this.value = value;
  7. }
  8. public implements MutableLiveBool {
  9. addListener(listener) => listeners.add(listener);
  10. set value {
  11. if $ == this.value
  12. return;
  13. val oldValue = $value;
  14. $value = $;
  15. listeners.accept(listener => listener(oldValue, $value));
  16. }
  17. }
  18. }